diff --git a/script/UnitTest.py b/script/UnitTest.py index 28db36f..2e15059 100644 --- a/script/UnitTest.py +++ b/script/UnitTest.py @@ -1,5 +1,5 @@ -import ut as unittest -reload(ut) +import ut +#reload(ut) class Test(ut.TestCase): def testAdd(self): ## test method names begin 'test*' @@ -10,7 +10,7 @@ class Test(ut.TestCase): self.assertEquals((5 * 8), 40) if __name__ == '__main__': - import sys;sys.argv = ['', 'Test.testName'] + import sys;sys.argv = ['', 'Test.testAdd'] ut.main() \ No newline at end of file