Example Spring codebase containing real world examples (CRUD, auth, advanced patterns, etc) that adheres to the RealWorld API spec.
1.31k
stars
680
forks
source link
Migrated deprecated asserts to more explicit junit asserts #27
Closed
jsmenzies closed 3 years ago
Hi,
I have migrated majority of the tests from the hamcrest matchers to use the junit more explicit method calls
e.g
assertThat(someBool, is(true))
toassertTrue(someBool)
also removed unnecessary exception throws decelerations.