Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for isExpectFailure (0.29 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/XCTestSourceFileElement.java

            for (XCTestCaseElement element : getTestCases()) {
                if (element.isExpectFailure()) {
                    result++;
                }
            }
            return result;
        }
    
        @Override
        public int getPassCount() {
            int result = 0;
            for (XCTestCaseElement element : getTestCases()) {
                if (!element.isExpectFailure()) {
                    result++;
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/InvocationSpec.groovy

    @CompileStatic
    interface InvocationSpec {
    
        List<String> getTasksToRun()
    
        List<String> getJvmArguments()
    
        List<String> getArgs()
    
        File getWorkingDirectory()
    
        boolean isExpectFailure()
    
        interface Builder {
            File getWorkingDirectory()
    
            void setWorkingDirectory(File workingDirectory)
    
            Builder expectFailure()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/XCTestCaseElement.java

     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.fixtures.app;
    
    public interface XCTestCaseElement {
        String getContent();
        String getName();
        boolean isExpectFailure();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 783 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docsTest/java/org/gradle/docs/samples/IntegrationTestSamplesRunner.java

        }
    
        @Override
        protected CommandExecutor selectExecutor(ExecutionMetadata executionMetadata, File workingDir, Command command) {
            return new IntegrationTestSamplesExecutor(workingDir, command.isExpectFailure());
        }
    
        @Nullable
        @Override
        protected File getImplicitSamplesRootDir() {
            String samplesDir = System.getProperty(SAMPLES_DIR_PROPERTY);
            if (samplesDir == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 22:10:58 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/MavenInvocationSpec.groovy

            this.tasksToRun = tasksToRun
            this.jvmArguments = jvmOpts
            this.mavenOpts = mavenOpts
            this.args = args
        }
    
        @Override
        boolean isExpectFailure() {
            throw new UnsupportedOperationException()
        }
    
        static InvocationBuilder builder() {
            return new InvocationBuilder()
        }
    
        InvocationBuilder withBuilder() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top