fix vcpeutils
[testsuite/python-testing-utils.git] / robotframework-onap / tests / runner.py
1 import unittest
2
3 # import your test modules
4 from tests.vcpeutils.SoUtils_test import *
5
6
7 # initialize the test suite
8 loader = unittest.TestLoader()
9 suite = unittest.TestSuite()
10
11 # add tests to the test suite
12 suite.addTests(loader.loadTestsFromTestCase(SoUtilsTest))
13
14 # initialize a runner, pass it your suite and run it
15 runner = unittest.TextTestRunner(verbosity=3)
16 result = runner.run(suite)