ログ出力内容確認テスト(Junit5) logunitを使用して検証する方法を説明する。 logunit(Github) 依存関係の追加 gradleを使用している場合は、build.gradleに以下の記述を追加する。 dependencies { testImplementation "io.github.netmikey.logunit:logunit-core:1.1.3" testRuntimeOnly "io.github.netmikey.logunit:logunit-logback:1.1.3" } mavenを使用している場合は、pom.xmlに以下の記述を追加する。 <d…