Home
last modified time | relevance | path

Searched refs:test_info_a (Results 1 – 1 of 1) sorted by relevance

/tools/asuite/atest/
Dunittest_utils.py45 def assert_equal_testinfos(test_class, test_info_a, test_info_b): argument
48 if test_info_a is None or test_info_b is None:
49 test_class.assertEqual(test_info_a, test_info_b)
52 for attr in test_info_a.__dict__:
53 test_info_a_attr = getattr(test_info_a, attr)
77 test_info_a = test_info_set_a.pop()
81 assert_equal_testinfos(test_class, test_info_a, test_info_b)
92 % (test_info_a, ';'.join([str(t) for t in test_info_set_b]))
103 for i, test_info_a in enumerate(test_info_list_a):
104 assert_equal_testinfos(test_class, test_info_a, test_info_list_b[i])