public interface TestsProvider
Modifier and Type | Method and Description |
---|---|
Class<?> |
createTestClass(String testName)
Create a test class to execute the specified test.
|
String |
getServicePid()
Deprecated.
No longer used.
|
List<String> |
getTestNames()
Return the list of available tests
|
long |
lastModified()
Deprecated.
No longer used.
TestManager always gets the latest tests
from the TestsProvider instances. Any performance issues need to be
addressed inside the TestsProvider implementation, e.g. by
caching. |
@Deprecated String getServicePid()
List<String> getTestNames()
Class<?> createTestClass(String testName) throws ClassNotFoundException
testName
- the name of the test for which a test class needs to be createdClassNotFoundException
- when the class cannot be created@Deprecated long lastModified()
TestManager
always gets the latest tests
from the TestsProvider
instances. Any performance issues need to be
addressed inside the TestsProvider
implementation, e.g. by
caching.Copyright © 2007–2021 The Apache Software Foundation. All rights reserved.