Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for removeAllParentheses (0.23 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/DefaultTestExecutionResult.groovy

            testName.size() > 2 && testName.endsWith('()') ? testName[0..-3] : testName
        }
    
        static String[] removeAllParentheses(String... testNames) {
            testNames.collect { removeParentheses(it) } as String[]
        }
    
        static String[][] removeAllParentheses(String[]... testNames) {
            testNames.collect { [removeParentheses(it[0]), it[1]] } as String[][]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top