Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for TestExecutable (0.12 sec)

  1. platforms/native/testing-native/src/test/groovy/org/gradle/nativeplatform/test/cpp/plugins/CppUnitTestPluginTest.groovy

            when:
            project.pluginManager.apply(CppUnitTestPlugin)
            project.evaluate()
    
            then:
            project.components.test == project.unitTest
            project.unitTest.binaries.get().name == ['testExecutable']
            project.components.containsAll project.unitTest.binaries.get()
    
            and:
            def binaries = project.unitTest.binaries.get()
            binaries.size() == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. platforms/native/tooling-native/src/crossVersionTest/groovy/org/gradle/language/cpp/tooling/r410/CppModelCrossVersionSpec.groovy

            project.testComponent.binaries.size() == 1
            def testBinary = project.testComponent.binaries[0]
            testBinary instanceof CppExecutable
            testBinary.name == 'testExecutable'
            testBinary.variantName == 'debug'
            testBinary.baseName == 'coreTest'
            testBinary.compilationDetails.sources.sourceFile as Set == [src1, src2] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 25.4K bytes
    - Viewed (0)
Back to top