Package org.scalatools.testing
Interface Framework
public interface Framework
-
Method Summary
Modifier and TypeMethodDescriptionname()
The name of the test framework that this object represents.testRunner
(ClassLoader testClassLoader, Logger[] loggers) Provide a runner for tests that will load test classes from 'testClassLoader' and direct all logging output from the framework to 'loggers'.tests()
Specifies how to identify classes that are tests.
-
Method Details
-
name
String name()The name of the test framework that this object represents. It is intended to be a human readable label. -
tests
Fingerprint[] tests()Specifies how to identify classes that are tests. -
testRunner
Provide a runner for tests that will load test classes from 'testClassLoader' and direct all logging output from the framework to 'loggers'.
-