Lines Matching refs:a
3 Learn about test runners and how to create a new test runner class.
7 2. [Creating a Test Runner](#creating-a-test-runner)
9 ## <a name="test-runner-details">Test Runner Details</a>
12 involve construction of the commandline given a ```TestInfo``` and
16 accepts. In this way, you can think of the test runner as a translator between
18 can have a consistent CLI for args instead of requiring the users to remember
23 ## <a name="creating-a-test-runner">Creating a Test Runner</a>
35 To create a new test runner, create a new class that inherits
36 ```TestRunnerBase```. Take a look at ```test_runners/example_test_runner.py```
37 to see what a simple test runner will look like.
43 * ```get_test_runner_build_reqs()```: Return a set of build targets that need
52 There is a parent helper method (```run```) that should be used to execute the