org.bdware.dogp.client.CommonTestCase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of doip-audit-tool Show documentation
Show all versions of doip-audit-tool Show documentation
doip audit tool developed by bdware
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;
}
}