Unittest tests order
33
7
How do I be sure of the unittest methods order? Is the alphabetical or numeric prefixes the proper way? class TestFoo(TestCase): def test_1(self): ... def test_2(self): ... or class TestFoo(TestCase): def test_a(self): ... def test_b(self): ...
python unit-testing
share | improve this question
edited Jun 27 '12 at 14:11
0xc0de
4,585 2 33 63
asked Nov 4 '10 at 9:32
nmb.ten
943 1 10 15
...