Spring boot Testing
spring-boot-starter-test に入っているもの
JUnit: ユニットテスティングのデファクトスタンダードライブラリ
Spring Test: SpringとかSpring Bootのアプリケーションを統合テストするためのライブラリ
AssertJ: いい感じにアサーションライブラリ
JUnit: assertEquals(expected, actual);
AssertJ: assertThat(actual).isEqualTo(expected)
メソッドチェーンでかけるのがいいっすね
Hamcrest: matcherのライブラリ
JUnit4ではデフォルトで搭載されていた
Mockito: モックフレームワーク
JSONassert: JSONのアサーションライブラリ
JsonPath: JSONでXPath!
doc
Core Features