diff --git a/junit4/src/test/kotlin/fr/xgouchet/elmyr/junit4/KotlinAnnotationTest.kt b/junit4/src/test/kotlin/fr/xgouchet/elmyr/junit4/KotlinAnnotationTest.kt index c2e03e2..c72facb 100644 --- a/junit4/src/test/kotlin/fr/xgouchet/elmyr/junit4/KotlinAnnotationTest.kt +++ b/junit4/src/test/kotlin/fr/xgouchet/elmyr/junit4/KotlinAnnotationTest.kt @@ -5,6 +5,7 @@ import fr.xgouchet.elmyr.junit4.dummy.Bar import fr.xgouchet.elmyr.junit4.dummy.BarFactory import fr.xgouchet.elmyr.junit4.dummy.Foo import fr.xgouchet.elmyr.junit4.dummy.FooFactory +import java.time.Month import org.assertj.core.api.Assertions.assertThat import org.junit.Before import org.junit.Rule @@ -30,6 +31,9 @@ class KotlinAnnotationTest { @Forgery lateinit var fakeFooMap: Map + @Forgery + lateinit var fakeMonth: Month + @Before fun setUp() { checkSeedChanged() @@ -64,6 +68,8 @@ class KotlinAnnotationTest { assertThat(fakeFooList).isNotNull.isNotEmpty assertThat(fakeFooSet).isNotNull.isNotEmpty assertThat(fakeFooMap).isNotNull.isNotEmpty + + assertThat(fakeMonth).isNotNull() } // endregion