Skip to content

Commit

Permalink
[WW-4528] improving testTwoExcludesPropertiesChained unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
Yasser Zamani committed Feb 3, 2017
1 parent 7140e01 commit 51c0bcb
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,9 @@ public void testTwoExcludesPropertiesChained() throws Exception {
assertEquals(bean.getBirth(), action.getBirth());
assertEquals(null, action.getName());
assertEquals(0, action.getCount());
Iterator<String> it = interceptor.getExcludes().iterator();
assertEquals(it.next(), "count");
assertEquals(it.next(), "name");
assertTrue(interceptor.getExcludes().contains("count"));
assertTrue(interceptor.getExcludes().contains("name"));
assertTrue(interceptor.getExcludes().size() == 2);
}

public void testNullCompoundRootElementAllowsProcessToContinue() throws Exception {
Expand Down

0 comments on commit 51c0bcb

Please sign in to comment.