All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.chutneytesting.design.domain.scenario.compose.ComposableTestCaseRepository Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
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