For the following code:
import unittest
class Test(unittest.TestCase):
def test1(self):
assert(True == True)
if __name__ == \"__main__\":
s
You have to specify the test method name (test1
):
import unittest
class Test(unittest.TestCase):
def test1(self):
assert(True == True)
if __name__ == "__main__":
suite = unittest.TestSuite()
suite.addTest(Test('test1')) # <----------------
unittest.TextTestRunner().run(suite)
Or, if you want to run all tests in the file, Just calling unittest.main() is enough:
if __name__ == "__main__":
unittest.main()