Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for TestSelection (0.29 sec)

  1. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/internal/execution/XCTestTestExecutionSpec.java

        private final String path;
        private final XCTestSelection testSelection;
    
        public XCTestTestExecutionSpec(File workingDir, File runScript, String path, XCTestSelection testSelection) {
            this.workingDir = workingDir;
            this.runScript = runScript;
            this.path = path;
            this.testSelection = testSelection;
        }
    
        public File getWorkingDir() {
            return workingDir;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/internal/execution/XCTestExecuter.java

            private final XCTestSelection testSelection;
    
            XCTestDetector(TestClassProcessor testClassProcessor, XCTestSelection testSelection) {
                this.testClassProcessor = testClassProcessor;
                this.testSelection = testSelection;
            }
    
            @Override
            public void run() {
                for (String includedTests : testSelection.getIncludedTests()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/api_test.go

    func (m testImporter) Import(path string) (*Package, error) {
    	if pkg := m[path]; pkg != nil {
    		return pkg, nil
    	}
    	return nil, fmt.Errorf("package %q not found", path)
    }
    
    func TestSelection(t *testing.T) {
    	selections := make(map[*syntax.SelectorExpr]*Selection)
    
    	imports := make(testImporter)
    	conf := Config{Importer: imports}
    	makePkg := func(path, src string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  4. src/go/types/api_test.go

    func (m testImporter) Import(path string) (*Package, error) {
    	if pkg := m[path]; pkg != nil {
    		return pkg, nil
    	}
    	return nil, fmt.Errorf("package %q not found", path)
    }
    
    func TestSelection(t *testing.T) {
    	selections := make(map[*ast.SelectorExpr]*Selection)
    
    	// We need a specific fileset in this test below for positions.
    	// Cannot use typecheck helper.
    	fset := token.NewFileSet()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
Back to top