Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 53 of 53 for assertDoesNotExist (0.16 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftApplicationIntegrationTest.groovy

                }
             """
    
            expect:
            succeeds "compileDebug"
            result.assertTasksExecuted(":compileDebugSwift", ':compileDebug')
            executable("build/exe/main/debug/App").assertDoesNotExist()
            objectFiles(app.main)*.assertExists()
        }
    
        def "can use installDirectory as task dependency"() {
            given:
            def app = new SwiftApp()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:43:37 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
Back to top