Interface Framework


public interface Framework
  • Method Summary

    Modifier and Type
    Method
    Description
    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'.
    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

      Runner 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'.