Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CUnitTestResults (0.12 sec)

  1. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cunit/CUnitTestResults.groovy

    package org.gradle.nativeplatform.test.cunit
    
    import groovy.xml.XmlParser
    import org.gradle.test.fixtures.file.TestFile
    
    class CUnitTestResults {
        TestFile testResultsFile
        Node resultsNode
        Map<String, Suite> suites = [:]
        Map<String, SummaryRecord> summaryRecords = [:]
    
        CUnitTestResults(TestFile testResultsFile) {
            assert testResultsFile.exists()
            this.testResultsFile = testResultsFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cunit/CUnitIntegrationTest.groovy

                ":linkHelloTestCUnitExe", ":helloTestCUnitExe", ":runHelloTestCUnitExe"
            file("build/test-results/helloTest/CUnitAutomated-Listing.xml").assertExists()
    
            def testResults = new CUnitTestResults(file("build/test-results/helloTest/CUnitAutomated-Results.xml"))
            testResults.suiteNames == ['hello test']
            testResults.suites['hello test'].passingTests == ['test_sum']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17K bytes
    - Viewed (0)
  3. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cunit/CUnitSamplesIntegrationTest.groovy

                                  ":installOperatorsTestPassingCUnitExe", ":runOperatorsTestPassingCUnitExe"
    
            and:
            def passingResults = new CUnitTestResults(cunit.dir.file("build/test-results/operatorsTest/passing/CUnitAutomated-Results.xml"))
            passingResults.suiteNames == ['operator tests']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top