Interface TestRunner<T>

Type Parameters:
T - the type of the test result produced by the test runner
All Known Implementing Classes:
AssignmentTestRunner

public interface TestRunner<T>
The TestRunner interface defines a method for executing test cases.
  • Method Summary

    Modifier and Type
    Method
    Description
    Runs all tests and returns their results.
  • Method Details

    • runAllTests

      List<T> runAllTests()
      Runs all tests and returns their results.
      Returns:
      a List of results of type T produced by the executed tests