def add_tests(self, test_json):
     """Takes a list of tests in the format required by the configuration file 
     and adds them to the tests that this TestRunner will run."""
     tests_objs = AutoThreadedTestRunner._build_tests(test_json)
     work_nodes = TestLoader.get_work_nodes_for_tests(tests_objs)
     self.work_provider.add_nodes(*work_nodes)
 def add_tests(self, test_json):
     """Takes a list of tests in the format required by the configuration file 
     and adds them to the tests that this TestRunner will run."""
     tests_objs = AutoThreadedTestRunner._build_tests(test_json)
     work_nodes = TestLoader.get_work_nodes_for_tests(tests_objs)
     self.work_provider.add_nodes(*work_nodes)