blob: b58215a113e838e769d38fc4339b43a71cd40574 [file] [log] [blame]
DR695H158df8f2019-05-04 15:51:36 -04001import unittest
2
3# import your test modules
4from tests.vcpeutils.SoUtils_test import *
5
6
7# initialize the test suite
8loader = unittest.TestLoader()
9suite = unittest.TestSuite()
10
11# add tests to the test suite
12suite.addTests(loader.loadTestsFromTestCase(SoUtilsTest))
13
14# initialize a runner, pass it your suite and run it
15runner = unittest.TextTestRunner(verbosity=3)
16result = runner.run(suite)