Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for suiteName (0.2 sec)

  1. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/testng/TestNGOptionsTest.groovy

                suiteThreadPoolSize.get() == source.suiteThreadPoolSize.get()
                useDefaultListeners == source.useDefaultListeners
                threadPoolFactoryClass == source.threadPoolFactoryClass
                suiteName == source.suiteName
                testName == source.testName
                suiteXmlFiles == source.suiteXmlFiles
                preserveOrder == source.preserveOrder
                groupByInstances == source.groupByInstances
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/testng/TestNGOptions.java

         */
        @Internal
        public String getSuiteName() {
            return suiteName;
        }
    
        public void setSuiteName(String suiteName) {
            this.suiteName = suiteName;
        }
    
        /**
         * Sets the default name of the test, if one is not specified in a suite XML file or in the source code.
         */
        @Internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. pkg/test/framework/suite.go

    		}
    	}
    	return strings.ReplaceAll(d, "/", "_")
    }
    
    // NewSuite returns a new suite instance.
    func NewSuite(m *testing.M) Suite {
    	_, f, _, _ := goruntime.Caller(1)
    	suiteName := deriveSuiteName(f)
    
    	return newSuite(suiteName,
    		func(_ *suiteContext) int {
    			return m.Run()
    		},
    		os.Exit,
    		getSettings)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top