Interface ComposableTestCaseRepository
-
- All Known Implementing Classes:
OrientComposableTestCaseRepository
public interface ComposableTestCaseRepository
-
-
Field Summary
Fields Modifier and Type Field Description static StringCOMPOSABLE_TESTCASE_REPOSITORY_SOURCE
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<TestCaseMetadata>findAll()ComposableTestCasefindById(String composableTestCaseId)IntegerlastVersion(String composableTestCaseId)voidremoveById(String testCaseId)Stringsave(ComposableTestCase composableTestCase)List<TestCaseMetadata>search(String textFilter)
-
-
-
Field Detail
-
COMPOSABLE_TESTCASE_REPOSITORY_SOURCE
static final String COMPOSABLE_TESTCASE_REPOSITORY_SOURCE
- See Also:
- Constant Field Values
-
-
Method Detail
-
save
String save(ComposableTestCase composableTestCase)
-
findById
ComposableTestCase findById(String composableTestCaseId)
-
findAll
List<TestCaseMetadata> findAll()
-
removeById
void removeById(String testCaseId)
-
search
List<TestCaseMetadata> search(String textFilter)
-
-