Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for assertNotPostBuildOutput (0.31 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ErrorsOnStdoutScrapingExecutionResult.java

            delegate.assertHasPostBuildOutput(expectedOutput);
            return this;
        }
    
        @Override
        public ExecutionResult assertNotPostBuildOutput(String expectedOutput) {
            delegate.assertNotPostBuildOutput(expectedOutput);
            return this;
        }
    
        @Override
        public ExecutionResult assertTasksExecutedInOrder(Object... taskPaths) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/WatchedDirectoriesFileSystemWatchingIntegrationTest.groovy

                }
            """
            file("input.txt").text = "input"
    
            when:
            run "myTask", "--debug"
            then:
            assertWatchedHierarchies([testDirectory])
            result.assertNotPostBuildOutput("Some of the file system contents retained in the virtual file system are on file systems that Gradle doesn't support watching.")
        }
    
        @Requires(UnitTestPreconditions.Windows)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ExecutionResult.java

         *
         * @param expectedOutput The expected log message, with line endings normalized to a newline character.
         */
        ExecutionResult assertNotPostBuildOutput(String expectedOutput);
    
        /**
         * Asserts that exactly the given set of tasks have been executed in the given order.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuter.java

                outputResult.assertHasPostBuildOutput(expectedOutput);
                return this;
            }
    
            @Override
            public ExecutionResult assertNotPostBuildOutput(String expectedOutput) {
                outputResult.assertNotPostBuildOutput(expectedOutput);
                return this;
            }
    
            @Override
            public boolean hasErrorOutput(String expectedOutput) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionResult.java

            return assertContentContains(postBuild.withNormalizedEol(), expectedOutput, "Post-build output");
        }
    
        @Override
        public ExecutionResult assertNotPostBuildOutput(String expectedOutput) {
            String expectedText = LogContent.of(expectedOutput).withNormalizedEol();
            if (postBuild.withNormalizedEol().contains(expectedText)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

            assertHasResult()
            result.assertHasPostBuildOutput(string.trim())
        }
    
        void postBuildOutputDoesNotContain(String string) {
            assertHasResult()
            result.assertNotPostBuildOutput(string.trim())
        }
    
        void outputDoesNotContain(String string) {
            assertHasResult()
            result.assertNotOutput(string.trim())
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
Back to top