gothinkster / spring-boot-realworld-example-app

Example Spring codebase containing real world examples (CRUD, auth, advanced patterns, etc) that adheres to the RealWorld API spec.
MIT License
1.31k stars 680 forks source link

Migrated deprecated asserts to more explicit junit asserts #27

Closed jsmenzies closed 3 years ago

jsmenzies commented 4 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)) to assertTrue(someBool)

also removed unnecessary exception throws decelerations.

aisensiy commented 3 years ago

Nice PR, thanks.