Lines Matching refs:test_class
24 def assert_strict_equal(test_class, first, second): argument
34 test_class.assertEqual(first, second)
38 test_class.assertIsInstance(first, type(second))
39 test_class.assertIsInstance(second, type(first))
44 assert_strict_equal(test_class, getattr(first, f),
47 def assert_equal_testinfos(test_class, test_info_a, test_info_b): argument
51 test_class.assertEqual(test_info_a, test_info_b)
57 test_class.assertEqual(test_info_a_attr, test_info_b_attr,
61 def assert_equal_testinfo_sets(test_class, test_info_set_a, test_info_set_b): argument
63 test_class.assertEqual(len(test_info_set_a), len(test_info_set_b),
72 assert_equal_testinfos(test_class, test_info_a, test_info_b)