Package com.gophers.interfaces
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 TypeMethodDescriptionRuns all tests and returns their results.
-
Method Details
-
runAllTests
Runs all tests and returns their results.- Returns:
- a
Listof results of typeTproduced by the executed tests
-