Lit TestFormat classes already needed to implement the getTestsInDirectory
method. However, some test formats may want to expand a single test path
to multiple Lit tests, for example in the case of a test that actually
generates other Lit tests.
To accommodate that, this commit adds the getTestsForFilename method to
TestFormat. This method can be used to turn a single path in a Lit test
suite into a list of tests associated to that path.
Because of the method name getTestsForFilename this sounds like it should also be defined in FileBasedTest?! I am sure there is a reason you put into the TestFormat root class?