Skip to content

Commit 0238502

Browse files
committed
Added test
1 parent a8caa4e commit 0238502

File tree

1 file changed

+8
-0
lines changed
  • src/test/kotlin/g3401_3500/s3456_find_special_substring_of_length_k

1 file changed

+8
-0
lines changed

src/test/kotlin/g3401_3500/s3456_find_special_substring_of_length_k/SolutionTest.kt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,12 @@ internal class SolutionTest {
2020
equalTo<Boolean>(false),
2121
)
2222
}
23+
24+
@Test
25+
fun hasSpecialSubstring3() {
26+
assertThat<Boolean>(
27+
Solution().hasSpecialSubstring("ccc", 2),
28+
equalTo<Boolean>(false),
29+
)
30+
}
2331
}

0 commit comments

Comments
 (0)