I don't like to see a mix of assertion libraries in these tests, `assertj` (preferred) and `junit.Assert`.
Note that where junit.Assert is used just for the custom failure message
capability, custom messages can be used with assertj assertions using the
`as()` method.
```
assertThat(...).as("this isn't what was expected").isTrue()
```
[ Full content available at: https://github.com/apache/geode/pull/2393 ]
This message was relayed via gitbox.apache.org for [email protected]
