We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32f863f commit 4b1d240Copy full SHA for 4b1d240
reconstruction/alert/src/test/java/org/jlab/service/alert/AHDCTest.java
@@ -19,7 +19,7 @@
19
public class AHDCTest {
20
21
@Test
22
- public static void run() {
+ public void run() {
23
System.setProperty("CLAS12DIR", "../../");
24
DefaultLogger.debug();
25
String dir = ClasUtilsFile.getResourceDir("CLAS12DIR", "etc/bankdefs/hipo4");
@@ -42,7 +42,8 @@ public static void run() {
42
}
43
44
public static void main(String[] args) {
45
- run();
+ AHDCTest t = new AHDCTest();
46
+ t.run();
47
48
49
0 commit comments