summaryrefslogtreecommitdiffstats
path: root/robotframework-onap/tests/runner.py
blob: b58215a113e838e769d38fc4339b43a71cd40574 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import unittest

# import your test modules
from tests.vcpeutils.SoUtils_test import *


# initialize the test suite
loader = unittest.TestLoader()
suite = unittest.TestSuite()

# add tests to the test suite
suite.addTests(loader.loadTestsFromTestCase(SoUtilsTest))

# initialize a runner, pass it your suite and run it
runner = unittest.TextTestRunner(verbosity=3)
result = runner.run(suite)