Skip to content
Snippets Groups Projects
Commit 7c3f35ac authored by Jan Kožusznik's avatar Jan Kožusznik
Browse files

rename class

parent 2e497d25
No related branches found
No related tags found
No related merge requests found
......@@ -53,6 +53,6 @@ public class RunBenchmark {
if (!Files.exists(p)) {
Files.createDirectory(p);
}
return new BenchmarkSPIMParametersImpl(p);
return new TestBenchmarkSPIMParametersImpl(p);
}
}
......@@ -5,11 +5,11 @@ import java.nio.file.Path;
import cz.it4i.fiji.haas_java_client.Configuration;
import cz.it4i.fiji.haas_spim_benchmark.core.BenchmarkSPIMParameters;
class BenchmarkSPIMParametersImpl extends Configuration implements BenchmarkSPIMParameters{
class TestBenchmarkSPIMParametersImpl extends Configuration implements BenchmarkSPIMParameters{
private Path workingDirectory;
public BenchmarkSPIMParametersImpl(Path workingDirectory) {
public TestBenchmarkSPIMParametersImpl(Path workingDirectory) {
super("configuration.properties");
this.workingDirectory = workingDirectory;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment