Skip to content

Commit 37d0385

Browse files
committed
new unit test, moved to test scope
1 parent 285af89 commit 37d0385

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

src/main/java/de/tilman_neumann/jml/factor/TestsetGeneratorTest.java src/test/java/de/tilman_neumann/jml/factor/TestsetGeneratorTest.java

+9-2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
import java.util.TreeMap;
2121

2222
import org.apache.logging.log4j.Logger;
23+
import org.junit.BeforeClass;
24+
import org.junit.Test;
2325
import org.apache.logging.log4j.LogManager;
2426

2527
import de.tilman_neumann.util.ConfigUtil;
@@ -34,9 +36,14 @@ public class TestsetGeneratorTest {
3436
private static final int MIN_BITS = 20;
3537
private static final int MAX_BITS = 1000;
3638
private static final int INCR_BITS = 10;
37-
38-
public static void main(String[] args) {
39+
40+
@BeforeClass
41+
public static void setup() {
3942
ConfigUtil.initProject();
43+
}
44+
45+
@Test
46+
public void testGeneratedNumberSize() {
4047
Timer timer = new Timer();
4148
for (int bits = MIN_BITS; bits<=MAX_BITS; bits+=INCR_BITS) {
4249
long start = timer.capture();

0 commit comments

Comments
 (0)