Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for JUnitTestCase (0.59 sec)

  1. cmd/prune-junit-xml/prunexml.go

    func pruneTESTS(suites *junitxml.JUnitTestSuites) {
    	var updatedTestsuites []junitxml.JUnitTestSuite
    
    	for _, suite := range suites.Suites {
    		var updatedTestcases []junitxml.JUnitTestCase
    		var updatedTestcase junitxml.JUnitTestCase
    		var updatedTestcaseFailure junitxml.JUnitFailure
    		failflag := false
    		name := suite.Name
    		regex := regexp.MustCompile(`^(.*?)/([^/]+)/?$`)
    		match := regex.FindStringSubmatch(name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 12:26:00 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/tasks/PerformanceTest.groovy

        }
    
        static String collectFailures(JUnitTestCase testCase) {
            List<JUnitFailure> failures = testCase.failures ?: []
            return failures.collect { it.value }.join("\n")
        }
    
        private List<ScenarioBuildResultData> extractResultFromTestSuite(JUnitTestSuite testSuite, String testProject) {
            List<JUnitTestCase> testCases = testSuite.testCases ?: []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 03 03:46:18 UTC 2022
    - 12.7K bytes
    - Viewed (0)
Back to top