com.chutneytesting.design.domain.scenario.compose.ComposableTestCaseRepository Maven / Gradle / Ivy
package com.chutneytesting.design.domain.scenario.compose;
import com.chutneytesting.design.domain.scenario.TestCaseMetadata;
import java.util.List;
public interface ComposableTestCaseRepository {
String COMPOSABLE_TESTCASE_REPOSITORY_SOURCE = "ComposableTestCase";
String save(ComposableTestCase composableTestCase);
ComposableTestCase findById(String composableTestCaseId);
List findAll();
void removeById(String testCaseId);
Integer lastVersion(String composableTestCaseId);
List search(String textFilter);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy