Example #1
0
 def discover(self, path):
     test_suite = TestSuite()
     for api_file in self.collect(path):
         test_case = TestCase(api_file)
         test_suite.add_case(test_case)
     return test_suite