Testing Fundamentals - Test Documentation
You have a test suite that should run three tests, but only two run. The suite code is:
What is the likely reason the third test
suite = unittest.TestSuite()
suite.addTest(TestClass('test_one'))
suite.addTest(TestClass('test_two'))
runner.run(suite)What is the likely reason the third test
test_three is not running?