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

net.thucydides.core.batches.BatchManager Maven / Gradle / Ivy

package net.thucydides.core.batches;

public interface BatchManager {
    int getCurrentTestCaseNumber();

    public void registerTestCase(Class testCaseClass);

    public void registerTestCase(String testCaseName);

    boolean shouldExecuteThisTest(int testCount);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy