Is there a way to tell the python unittest execute all assertion in a method and show all cases it fails, instead of stop at the first failed.
class MyTestCase(TestCase):
def test_a(self):
with open('testcase.txt') as ifile:
for iline in ifile:
self.assertEqual(iline, 'it is a test!')