use Junit or Jmock to assert that an array of java beans has unique property values

302 Views Asked by At

How do i test an array of java beans contains the specified property and the specified valued and that the specified value for the specified property is unique .

2

There are 2 best solutions below

0
On

This is highly specific functionality, so you'll need to write a custom Hamcrest Matcher to do it. You can then use this matcher using standard JUnit:

Matcher<Object[]> containsTheUniqueProperty(String propName, String propValue) {
    return new Matcher<Object[]>() {
       ...
    }
}

Object[] myArrayOfJavaBeans = ...
assertThat(myArrayOfJavaBeans, containsTheUniqueProperty("prop", "value"));
0
On

Not as elegant, but you could also just iterate over them, keep a set of values, and check each against the set. If any are found, the test fails.