- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for AbstractJavaNullabilityChangesTest (2.49 sec)
-
build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractJavaNullabilityChangesTest.kt
* See the License for the specific language governing permissions and * limitations under the License. */ package gradlebuild.binarycompatibility import org.junit.Test abstract class AbstractJavaNullabilityChangesTest : AbstractBinaryCompatibilityTest() { protected abstract val nullableAnnotationName: String @Test fun `from non-null returning to null returning is breaking`() {
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Tue Feb 04 09:55:47 UTC 2025 - 5.1K bytes - Viewed (0) -
build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/JavaxAnnotationNullabilityChangesTest.kt
* See the License for the specific language governing permissions and * limitations under the License. */ package gradlebuild.binarycompatibility class JavaxAnnotationNullabilityChangesTest : AbstractJavaNullabilityChangesTest() { override val nullableAnnotationName: String = "javax.annotation.Nullable"Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Tue Feb 04 09:55:47 UTC 2025 - 824 bytes - Viewed (0) -
build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/JSpecifyNullabilityChangesTest.kt
* limitations under the License. */ package gradlebuild.binarycompatibility import org.junit.Test class JSpecifyNullabilityChangesTest : AbstractJavaNullabilityChangesTest() { override val nullableAnnotationName: String = "org.jspecify.annotations.Nullable" @Test fun `from non-null array returning to null returning is breaking`() {Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Thu May 15 17:05:08 UTC 2025 - 18K bytes - Viewed (0)