Home | History | Annotate | Download | only in atest

Lines Matching refs:test_class

24 def assert_strict_equal(test_class, first, second):
30 test_class.assertEqual(first, second)
34 test_class.assertIsInstance(first, type(second))
35 test_class.assertIsInstance(second, type(first))
40 assert_strict_equal(test_class, getattr(first, f),
43 def assert_equal_testinfos(test_class, test_info_a, test_info_b):
47 test_class.assertEqual(test_info_a, test_info_b)
53 test_class.assertEqual(test_info_a_attr, test_info_b_attr,
57 def assert_equal_testinfo_sets(test_class, test_info_set_a, test_info_set_b):
59 test_class.assertEqual(len(test_info_set_a), len(test_info_set_b),
68 assert_equal_testinfos(test_class, test_info_a, test_info_b)