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

org.bdware.dogp.client.CommonTestCase Maven / Gradle / Ivy

The newest version!
package org.bdware.dogp.client;

public abstract class CommonTestCase implements AliTestClient07.DoipMessageTestCase {
    private final AliTestClient07.BatchStartConfig config;

    public CommonTestCase(AliTestClient07.BatchStartConfig config) {
        this.config = config;
    }
    boolean needContinue = true;
    @Override
    public String getResultFile() {
        return "./" + config.resultFile;
    }
    @Override
    public boolean needContinue() {
        return needContinue;
    }
    @Override
    public void endTestCase() {
        needContinue = false;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy