Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for expectedOutput (0.16 sec)

  1. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSingleCppProjectIntegrationTest.groovy

            resultDebug.assertTasksNotSkipped(':compileDebugCpp', ':linkDebug', ':installDebug', ':_xcode___App_Debug')
            debugBinary.exec().out == app.expectedOutput
            fixture(debugBinary).assertHasDebugSymbolsFor(app.sourceFileNamesWithoutHeaders)
    
            when:
            releaseBinary.assertDoesNotExist()
            def resultRelease = xcodebuild
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/CompositeBuildTaskExecutionCrossVersionSpec.groovy

                collectOutputs(build)
                build.forLaunchables(tasks[0]).run()
            }
        }
    
        private boolean outputContains(String expectedOutput) {
            return stdout.toString().contains(expectedOutput)
        }
    
        class TestOperationCollector implements ProgressListener {
    
            List<TestOperationDescriptor> descriptors = []
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/io/FilesSimplifyPathTest.java

        for (String line : Resources.readLines(url, UTF_8)) {
          Iterator<String> iterator = splitter.split(line).iterator();
          String input = iterator.next();
          String expectedOutput = iterator.next();
          assertFalse(iterator.hasNext());
          assertEquals(expectedOutput, simplifyPath(input));
        }
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 11K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedCustomTaskExecutionIntegrationTest.groovy

            when:
            withBuildCache().run "weirdOutput"
            then:
            executedAndNotSkipped ":weirdOutput"
            expectedOutput.file
    
            when:
            cleanBuildDir()
            withBuildCache().run "weirdOutput"
            then:
            skipped ":weirdOutput"
            expectedOutput.file
        }
    
        def "local state declared via #api API is destroyed when task is loaded from cache"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 30.6K bytes
    - Viewed (0)
Back to top