Skip to content

Commit

Permalink
Added test for null result in BatchResult.
Browse files Browse the repository at this point in the history
  • Loading branch information
mderka committed Apr 13, 2016
1 parent 5cbf03e commit 1c60ba0
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ public void testSuccess() {
}
result.success(true);
assertTrue(result.get());
// test that null is allowed
result.success(null);
}

@Test
Expand Down

0 comments on commit 1c60ba0

Please sign in to comment.