Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CustomTestBinary (0.21 sec)

  1. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/plugins/TestSuiteModelIntegrationSpec.groovy

            buildFile << """
                import org.gradle.api.internal.project.taskfactory.ITaskFactory
    
                interface CustomTestBinary extends TestSuiteBinarySpec {
                    String getData()
                }
    
                class DefaultCustomTestBinary extends BaseBinarySpec implements CustomTestBinary {
                    TestSuiteSpec testSuite
                    BinarySpec testedBinary
                    String data = "foo"
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/plugins/TestSuiteDefinitionIntegrationSpec.groovy

        ComponentSpec testedComponent
    
        void testing(ComponentSpec component) { this.testedComponent = component }
    }
    
    interface CustomTestBinary extends TestSuiteBinarySpec {
        String getData()
    }
    
    class DefaultCustomTestBinary extends BaseBinarySpec implements CustomTestBinary {
        TestSuiteSpec testSuite
        BinarySpec testedBinary
        String data
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top