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

rename class

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