Skip to content

Commit

Permalink
fix: Added @ignore to the tests (#682)
Browse files Browse the repository at this point in the history
  • Loading branch information
DerSimeon authored Oct 20, 2024
1 parent f39ccf3 commit 0e52455
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions exercises/practice/matrix/src/test/kotlin/MatrixTest.kt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import kotlin.test.Ignore
import kotlin.test.Test
import kotlin.test.assertEquals

Expand All @@ -11,6 +12,7 @@ class MatrixTest {
assertEquals(expectedRow, Matrix(matrixAsString).row(rowIndex))
}

@Ignore
@Test
fun `extract row from matrix`() {
val matrixAsString = "1 2\n3 4"
Expand All @@ -19,6 +21,7 @@ class MatrixTest {
assertEquals(expectedRow, Matrix(matrixAsString).row(rowIndex))
}

@Ignore
@Test
fun `extract row from diff widths matrix`() {
val matrixAsString = "1 2\n10 20"
Expand All @@ -27,6 +30,7 @@ class MatrixTest {
assertEquals(expectedRow, Matrix(matrixAsString).row(rowIndex))
}

@Ignore
@Test
fun `extract row from non square matrix`() {
val matrixAsString = """
Expand All @@ -40,6 +44,7 @@ class MatrixTest {
assertEquals(expectedRow, Matrix(matrixAsString).row(rowIndex))
}

@Ignore
@Test
fun `extract column from one number matrix`() {
val matrixAsString = "1"
Expand All @@ -48,6 +53,7 @@ class MatrixTest {
assertEquals(expectedColumn, Matrix(matrixAsString).column(columnIndex))
}

@Ignore
@Test
fun `extract column matrix`() {
val matrixAsString = """
Expand All @@ -60,6 +66,7 @@ class MatrixTest {
assertEquals(expectedColumn, Matrix(matrixAsString).column(columnIndex))
}

@Ignore
@Test
fun `extract column from non square matrix`() {
val matrixAsString = """
Expand All @@ -72,6 +79,7 @@ class MatrixTest {
assertEquals(expectedColumn, Matrix(matrixAsString).column(columnIndex))
}

@Ignore
@Test
fun `extract column from diff widths matrix`() {
val matrixAsString = """
Expand Down

0 comments on commit 0e52455

Please sign in to comment.