public List getTestNames()

in src/main/java/org/apache/sling/junit/scriptable/ScriptableTestsProvider.java [191:198]


    public List<String> getTestNames() {
        // We have a single test to run, would be better to have one
        // test class per test resource but that looks harder. Maybe
        // use the Sling compiler to generate test classes?
        final List<String> result = new LinkedList<>();
        result.add(TEST_CLASS_NAME);
        return result;
    }