Skip to content

Commit

Permalink
DEV-750: Refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
kduyvesteyn committed May 28, 2019
1 parent 0a17899 commit 6156122
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ public void extractDataFromAmberWorksForSomatic() throws IOException {
}

@Test(expected = IOException.class)
public void testMalformed() throws IOException {
public void malformedYieldsIOException() throws IOException {
final AmberChecker checker = new AmberChecker("malformed", AMBER_DIRECTORY);
checker.run();
}

@Test(expected = IOException.class)
public void testMissing() throws IOException {
public void missingYieldsIOException() throws IOException {
final AmberChecker checker = new AmberChecker("missing", AMBER_DIRECTORY);
checker.run();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,14 @@ public void extractDataFromMetricsWorksForSingleSample() throws IOException {
}

@Test(expected = IOException.class)
public void missingYieldsIOException() throws IOException {
final MetricsChecker checker = new MetricsChecker("missing", null, METRICS_DIRECTORY);
public void malformedYieldsIOException() throws IOException {
final MetricsChecker checker = new MetricsChecker("malformed", null, METRICS_DIRECTORY);
checker.run();
}

@Test(expected = IOException.class)
public void malformedYieldsIOException() throws IOException {
final MetricsChecker checker = new MetricsChecker("malformed", null, METRICS_DIRECTORY);
public void missingYieldsIOException() throws IOException {
final MetricsChecker checker = new MetricsChecker("missing", null, METRICS_DIRECTORY);
checker.run();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ public void extractDataFromPurpleWorksForSomatic() throws IOException {
}

@Test (expected = IOException.class)
public void testMalformed() throws IOException {
public void malformedYieldsIOException() throws IOException {
final PurpleChecker checker = new PurpleChecker("malformed", PURPLE_DIRECTORY);
checker.run();
}

@Test (expected = IOException.class)
public void testMissing() throws IOException {
public void missingYieldsIOException() throws IOException {
final PurpleChecker checker = new PurpleChecker("missing", PURPLE_DIRECTORY);
checker.run();
}
Expand Down

0 comments on commit 6156122

Please sign in to comment.