Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for withJsonFile (1.91 sec)

  1. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/UpgradedPropertiesChangesTest.kt

                            public interface TaskInterface {
                                Property<String> getSourceCompatibility();
                            }
                        """
                    )
                    withJsonFile(
                        "resources/upgraded-properties.json",
                        """
                            [{
                                "containingType": "com.example.Task",
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Dec 24 14:15:15 UTC 2025
    - 26.2K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

        protected
        fun File.withJavaFile(path: String, @Language("java") text: String): File = withFile(path, text)
    
        protected
        fun File.withJsonFile(path: String, @Language("json") text: String): File = withFile(path, text)
    
        private
        fun File.withUniqueDirectory(prefixPath: String): File =
            Files.createTempDirectory(
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Dec 30 10:14:25 UTC 2025
    - 18K bytes
    - Viewed (0)
Back to top