Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 113 of 113 for assertDoesNotExist (0.26 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationIntegrationTest.groovy

                }
             """
    
            expect:
            succeeds "compileDebug"
            result.assertTasksExecuted(tasks.debug.compile, ':compileDebug')
            executable("build/exe/main/debug/app").assertDoesNotExist()
            objectFiles(app.main)*.assertExists()
        }
    
        @ToBeFixedForConfigurationCache
        def "can use installDirectory as task dependency"() {
            settingsFile << "rootProject.name = 'app'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 19:11:01 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileIntegrationTest.groovy

            """
    
            succeeds "test"
            then:
            executedAndNotSkipped ":test"
            javaClassFile("com/Example/Foo.class").assertIsFile()
            javaClassFile("com/example/Foo.class").assertDoesNotExist()
        }
    
        def "implementation dependencies should not leak into compile classpath of consumer"() {
            mavenRepo.module('org.gradle.test', 'shared', '1.0').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

            output.count("Transforming test-1.3.jar") == 1
            output.count("Transforming test2-2.3.jar") == 1
            file("build/libs").assertDoesNotExist()
    
            when:
            run "resolve"
    
            then:
            file("build/libs").assertDoesNotExist()
    
            and:
            output.count("Transforming") == 0
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
Back to top