Skip to content

Commit

Permalink
fix: Added @ignore to the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
DerSimeon committed Oct 14, 2024
1 parent 157270a commit 4d612f5
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
import org.junit.Ignore
import org.junit.Test
import kotlin.test.Ignore
import kotlin.test.Test
import kotlin.test.assertEquals

class ZebraPuzzleTest {

@Test
fun `resident who drinks water`() = assertEquals("Norwegian", ZebraPuzzle().drinksWater())

@Ignore
@Test
fun `resident who owns zebra`() = assertEquals("Japanese", ZebraPuzzle().ownsZebra())

Expand Down

0 comments on commit 4d612f5

Please sign in to comment.