Package com.avoka.fc.core.service
Interface ITestSuiteService
-
- All Known Implementing Classes:
TestSuiteService
public interface ITestSuiteService
Provides a services test suite to run a set of unit tests.- Since:
- 4.3.0
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
ITestSuiteService.TestResult
Provides a unit test result class.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<ITestSuiteService.TestResult>
runTests()
Run the test suites configured unit tests, return an empty list if all succeeded or a list of error messages if one or more service unit tests failed.
-
-
-
Method Detail
-
runTests
List<ITestSuiteService.TestResult> runTests()
Run the test suites configured unit tests, return an empty list if all succeeded or a list of error messages if one or more service unit tests failed.- Returns:
- return an empty list if all tests ran successfully or a list of error messages if one or more test failed
-
-