Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DefaultTestLauncher.java

                        return String.format("Could not execute tests using %s.", connection.getDisplayName());
                    }
                }));
            }
        }
    
        @Override
        public TestLauncher withTestsFor(Action<TestSpecs> testSpec) {
            DefaultTestSpecs testSpecs = new DefaultTestSpecs();
            testSpec.execute(testSpecs);
            taskSpecs.addAll(testSpecs.getTestSpecs());
            return this;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top