|
|
@@ -1,4 +1,5 @@
|
|
1
|
1
|
import org.junit.Test;
|
|
|
2
|
+import org.junit.Ignore;
|
|
2
|
3
|
|
|
3
|
4
|
import java.util.*;
|
|
4
|
5
|
|
|
|
@@ -27,6 +28,7 @@ public class EtlTest {
|
|
27
|
28
|
assertEquals(expected, etl.transform(old));
|
|
28
|
29
|
}
|
|
29
|
30
|
|
|
|
31
|
+ @Ignore
|
|
30
|
32
|
@Test
|
|
31
|
33
|
public void testTransformMoreValues() {
|
|
32
|
34
|
Map<Integer, List<String>> old = new HashMap<Integer, List<String>>() {
|
|
|
@@ -50,6 +52,7 @@ public class EtlTest {
|
|
50
|
52
|
assertEquals(expected, etl.transform(old));
|
|
51
|
53
|
}
|
|
52
|
54
|
|
|
|
55
|
+ @Ignore
|
|
53
|
56
|
@Test
|
|
54
|
57
|
public void testMoreKeys() {
|
|
55
|
58
|
Map<Integer, List<String>> old = new HashMap<Integer, List<String>>() {
|
|
|
@@ -73,6 +76,7 @@ public class EtlTest {
|
|
73
|
76
|
assertEquals(expected, etl.transform(old));
|
|
74
|
77
|
}
|
|
75
|
78
|
|
|
|
79
|
+ @Ignore
|
|
76
|
80
|
@Test
|
|
77
|
81
|
public void testFullDataset() {
|
|
78
|
82
|
Map<Integer, List<String>> old = new HashMap<Integer, List<String>>() {
|