- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for checkBinaryCompatibleKotlin (0.1 seconds)
-
build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/KotlinNullabilityChangesTest.kt
) assertHasNoInformation() } } @Test fun `from null returning to non-null returning is not breaking`() { checkBinaryCompatibleKotlin( v1 = """ class Source { val someVal: String? = null fun foo(): String? = null } """, v2 = """Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Tue Feb 04 09:55:47 GMT 2025 - 5K bytes - Click Count (0) -
build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AnonymousClassesFilteringTest.kt
} } """ ) { assertEmptyReport() } } @Test fun `anonymous classes are excluded (kotlin)`() { checkBinaryCompatibleKotlin( v1 = """ fun some() {} """, v2 = """ fun some() { val anon = object : Runnable {Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Dec 09 08:14:05 GMT 2020 - 1.8K bytes - Click Count (0) -
build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/KotlinInternalFilteringTest.kt
enum class AddedEnum { FOO; $publicMembers } """ @Test fun `added internal members are filtered from the comparison`() { checkBinaryCompatibleKotlin( v1 = existingSource, v2 = internalSource ).assertEmptyReport() } @Test fun `existing internal members made public appear as added`() {Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Fri Mar 14 02:17:00 GMT 2025 - 6.5K bytes - Click Count (0)