Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for formatsSuccessRateWhenAllTestsPass (0.34 sec)

  1. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/report/CompositeTestResultsTest.groovy

            }
        }
    
        def formatsSuccessRateWhenNoTests() {
            expect:
            results.successRate == null
            results.formattedSuccessRate == "-"
        }
    
        def formatsSuccessRateWhenAllTestsPass() {
            results.addTest(test())
    
            expect:
            results.successRate == 100
            results.formattedSuccessRate == '100%'
        }
    
        def formatsSuccessRateWhenSomeTestsFail() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top