org.scalatools.testing
Interface Framework


public interface Framework


Method Summary
 java.lang.String name()
          The name of the test framework that this object represents.
 Runner testRunner(java.lang.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'.
 Fingerprint[] tests()
          Specifies how to identify classes that are tests.
 

Method Detail

name

java.lang.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

Runner testRunner(java.lang.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'.