From 24f02d210c859f9ef765a839919ccd0e6cb61f9e Mon Sep 17 00:00:00 2001 From: ParkJiwoon Date: Fri, 22 Apr 2022 21:25:07 +0900 Subject: [PATCH] =?UTF-8?q?=EC=8B=A4=ED=8C=A8=ED=95=98=EB=8A=94=20?= =?UTF-8?q?=ED=85=8C=EC=8A=A4=ED=8A=B8=20=EC=BD=94=EB=93=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../kotlin/com/example/practicegithubaction/SampleTest.kt | 5 +++++ 1 file changed, 5 insertions(+) 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") + } }