diff --git a/src/test/kotlin/com/example/practicegithubaction/SampleTest.kt b/src/test/kotlin/com/example/practicegithubaction/SampleTest.kt index 5a68a45..1733bab 100644 --- a/src/test/kotlin/com/example/practicegithubaction/SampleTest.kt +++ b/src/test/kotlin/com/example/practicegithubaction/SampleTest.kt @@ -9,4 +9,9 @@ class SampleTest { fun testSuccess() { assertThat("hello").isEqualTo("hello") } + + @Test + fun testFail() { + assertThat("hello").isEqualTo("hi") + } }