|
35 | 35 | import static org.junit.Assert.assertTrue; |
36 | 36 |
|
37 | 37 | @SuppressWarnings({"ProhibitedExceptionDeclared", "OverlyBroadThrowsClause"}) |
38 | | -@Ignore public class ReferenceFileTest { |
| 38 | +public class ReferenceFileTest { |
39 | 39 | private static final Logger LOG = LoggerFactory.getLogger(ReferenceFileTest.class); |
40 | 40 | private static final Gson GSON = new GsonBuilder().serializeSpecialFloatingPointValues().create(); |
41 | 41 |
|
|
65 | 65 | public void checkRandomReferenceRecords() throws Exception { |
66 | 66 | LOG.info("checkRandomReferenceRecords"); |
67 | 67 | checkFile(RANDOM_REFERENCE_FILE_1); |
68 | | - checkFile(RANDOM_REFERENCE_FILE_2); |
69 | | - checkFile(RANDOM_REFERENCE_FILE_3); |
| 68 | +@ignore checkFile(RANDOM_REFERENCE_FILE_2); |
| 69 | +@ignore checkFile(RANDOM_REFERENCE_FILE_3); |
70 | 70 | } |
71 | 71 |
|
72 | 72 | @SuppressWarnings("JUnitTestMethodWithNoAssertions") |
73 | 73 | @Test |
74 | 74 | public void checkGridReferenceRecords() throws Exception { |
75 | 75 | LOG.info("checkGridReferenceRecords"); |
76 | 76 | checkFile(GRID_REFERENCE_FILE_1); |
77 | | - checkFile(GRID_REFERENCE_FILE_2); |
78 | | - checkFile(GRID_REFERENCE_FILE_3); |
| 77 | +@ignore checkFile(GRID_REFERENCE_FILE_2); |
| 78 | +@ignore checkFile(GRID_REFERENCE_FILE_3); |
79 | 79 | } |
80 | 80 |
|
81 | 81 | @SuppressWarnings("JUnitTestMethodWithNoAssertions") |
82 | 82 | @Test |
83 | 83 | public void checkBoundariesReferenceRecords() throws Exception { |
84 | 84 | LOG.info("checkBoundariesReferenceRecords"); |
85 | | - checkFile(BOUNDARIES_REFERENCE_FILE); |
| 85 | +@ignore checkFile(BOUNDARIES_REFERENCE_FILE); |
86 | 86 | } |
87 | 87 |
|
88 | 88 | @SuppressWarnings("JUnitTestMethodWithNoAssertions") |
89 | 89 | @Test |
90 | 90 | public void checkRandomReferenceRecordsPrecision2() throws Exception { |
91 | 91 | LOG.info("checkRandomReferenceRecordsPrecision2"); |
92 | 92 | checkFile(RANDOM_REFERENCE_FILE_1_HP); |
93 | | - checkFile(RANDOM_REFERENCE_FILE_2_HP); |
94 | | - checkFile(RANDOM_REFERENCE_FILE_3_HP); |
| 93 | +@ignore checkFile(RANDOM_REFERENCE_FILE_2_HP); |
| 94 | +@ignore checkFile(RANDOM_REFERENCE_FILE_3_HP); |
95 | 95 | } |
96 | 96 |
|
97 | 97 | @SuppressWarnings("JUnitTestMethodWithNoAssertions") |
98 | 98 | @Test |
99 | 99 | public void checkGridReferenceRecordsPrecision2() throws Exception { |
100 | 100 | LOG.info("checkGridReferenceRecordsPrecision2"); |
101 | 101 | checkFile(GRID_REFERENCE_FILE_1_HP); |
102 | | - checkFile(GRID_REFERENCE_FILE_2_HP); |
103 | | - checkFile(GRID_REFERENCE_FILE_3_HP); |
| 102 | +@ignore checkFile(GRID_REFERENCE_FILE_2_HP); |
| 103 | +@ignore checkFile(GRID_REFERENCE_FILE_3_HP); |
104 | 104 | } |
105 | 105 |
|
106 | 106 | @SuppressWarnings("JUnitTestMethodWithNoAssertions") |
107 | 107 | @Test |
108 | 108 | public void checkBoundariesReferenceRecordsPrecision2() throws Exception { |
109 | 109 | LOG.info("checkBoundariesReferenceRecordsPrecision2"); |
110 | | - checkFile(BOUNDARIES_REFERENCE_FILE_HP); |
| 110 | +@ignore checkFile(BOUNDARIES_REFERENCE_FILE_HP); |
111 | 111 | } |
112 | 112 |
|
113 | 113 | @SuppressWarnings("BusyWait") |
|
0 commit comments