Skip to content

Commit

Permalink
Remove a test
Browse files Browse the repository at this point in the history
  • Loading branch information
vmishenev committed Aug 16, 2024
1 parent 53363f7 commit c826cbd
Showing 1 changed file with 0 additions and 25 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,31 +43,6 @@ class JvmMappedMethodsFilterTest : BaseAbstractTest() {
}
}

@Test
fun `should filter out JVM mapped methods in String`() {
// hacky test, String is final
testInline(
"""
|/src/MyCharSequence.kt
|class MyString: String
""".trimIndent(), configuration
) {
preMergeDocumentablesTransformationStage = { modules ->
assertEquals(
setOf(
"compareTo",
"equals",
"get",
"plus",
"subSequence",
"toString"
),
modules.getMethodNamesFrom("MyString")
)
}
}
}

@Test
fun `should filter out JVM mapped methods in Collection and MutableCollection`() {
testInline(
Expand Down

0 comments on commit c826cbd

Please sign in to comment.