File tree 1 file changed +9
-2
lines changed
src/test/java/de/tilman_neumann/jml/factor
1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change 20
20
import java .util .TreeMap ;
21
21
22
22
import org .apache .logging .log4j .Logger ;
23
+ import org .junit .BeforeClass ;
24
+ import org .junit .Test ;
23
25
import org .apache .logging .log4j .LogManager ;
24
26
25
27
import de .tilman_neumann .util .ConfigUtil ;
@@ -34,9 +36,14 @@ public class TestsetGeneratorTest {
34
36
private static final int MIN_BITS = 20 ;
35
37
private static final int MAX_BITS = 1000 ;
36
38
private static final int INCR_BITS = 10 ;
37
-
38
- public static void main (String [] args ) {
39
+
40
+ @ BeforeClass
41
+ public static void setup () {
39
42
ConfigUtil .initProject ();
43
+ }
44
+
45
+ @ Test
46
+ public void testGeneratedNumberSize () {
40
47
Timer timer = new Timer ();
41
48
for (int bits = MIN_BITS ; bits <=MAX_BITS ; bits +=INCR_BITS ) {
42
49
long start = timer .capture ();
You can’t perform that action at this time.
0 commit comments