Lines Matching refs:finder
3 Learn about test finders and how to create a new test finder class.
6 1. [Test Finder Details](#test-finder-details)
7 2. [Creating a Test Finder](#creating-a-test-finder)
9 ## <a name="test-finder-details">Test Finder Details</a>
11 A test finder class holds find methods. A find method is given a string (the
15 test finder class can hold multiple find methods. The find methods are grouped
20 **When should I create a new test finder class?**
22 If the metadata used to find a test is unlike existing test finder classes,
25 default test finder classes use the module-info.json and specific dir paths
28 ## <a name="creating-a-test-finder">Creating a Test Finder</a>
30 First thing to choose is where to put the test finder. This will primarily
31 depend on if the test finder will be public or private. If public,
37 > add the path of where the test finder lives into ```$PYTHONPATH```. Same
43 the find methods from your test finder class. Take a look at
46 Define the find methods in your test finder class. These find methods must
54 Final bit is to add your test finder class to ```test_finder_handler```.