Lines Matching defs:test_2
44 def test_2(self): pass
47 tests = unittest.TestSuite([Foo('test_1'), Foo('test_2')])
168 test_2 = MyTestCase
528 test_2 = MyTestCase
531 suite = loader.loadTestsFromName('test_2', NotAModule)
952 test_2 = MyTestCase
955 suite = loader.loadTestsFromNames(['test_2'], NotAModule)
1173 def test_2(self): pass
1178 self.assertEqual(loader.getTestCaseNames(Test), ['test_1', 'test_2'])
1218 def test_2(self): pass
1227 names = ['test_1', 'test_2', 'test_3']
1237 def test_2(self): pass
1249 self.assertEqual(loader.getTestCaseNames(MyTest), ['test_1', 'test_2'])
1252 self.assertEqual(loader.getTestCaseNames(MyTest), ['test_1', 'test_2'])
1294 def test_2(self): pass
1298 tests_2 = unittest.TestSuite([Foo('test_1'), Foo('test_2')])
1316 def test_2(self): pass
1321 tests_2 = [unittest.TestSuite([Foo('test_1'), Foo('test_2')])]
1339 def test_2(self): pass
1344 tests_2 = unittest.TestSuite([Foo('test_1'), Foo('test_2')])
1362 def test_2(self): pass
1367 tests_2 = unittest.TestSuite([Foo('test_1'), Foo('test_2')])
1396 def test_2(self): pass
1401 tests = loader.suiteClass([Foo('test_2'), Foo('test_1')])
1413 def test_2(self): pass
1419 tests = [loader.suiteClass([Foo('test_2'), Foo('test_1')])]
1431 def test_2(self): pass
1437 tests = loader.suiteClass([Foo('test_2'), Foo('test_1')])
1449 def test_2(self): pass
1455 tests = [loader.suiteClass([Foo('test_2'), Foo('test_1')])]
1468 def test_2(self): pass
1473 test_names = ['test_2', 'test_1']
1483 def test_2(self): pass
1487 test_names = ['test_2', 'test_3', 'test_1']
1498 def test_2(self): pass
1503 test_names = ['test_2', 'test_1']
1516 def test_2(self): pass
1519 tests = [Foo('test_1'), Foo('test_2')]
1531 def test_2(self): pass
1535 tests = [[Foo('test_1'), Foo('test_2')]]
1547 def test_2(self): pass
1551 tests = [Foo('test_1'), Foo('test_2')]
1563 def test_2(self): pass
1567 tests = [[Foo('test_1'), Foo('test_2')]]