Skip to content

Commit

Permalink
Update ToStringEvaluatorTest.java
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmyMaci committed Nov 23, 2018
1 parent c4f0eee commit e42ef1e
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,14 @@ public void testEvaluateConsistencyWithIterations()
{
boolean expected;
boolean actual;

actual = ToStringEvaluator.evaluateConsistency(Integer.valueOf(1), 10);
expected = true;
assertEquals(expected, actual);

actual = ToStringEvaluator.evaluateConsistency(null, 10);
expected = false;
assertEquals(expected, actual);
}

/**
Expand Down

0 comments on commit e42ef1e

Please sign in to comment.