Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for scriptNameDefaultsToApplicationName (0.16 sec)

  1. platforms/jvm/plugins-application/src/test/groovy/org/gradle/api/tasks/application/CreateStartScriptsTest.groovy

            expect:
            task.unixStartScriptGenerator instanceof UnixStartScriptGenerator
            task.windowsStartScriptGenerator instanceof WindowsStartScriptGenerator
        }
    
        def scriptNameDefaultsToApplicationName() {
            task.outputDir = new File('output')
    
            when:
            task.applicationName = "myApp"
    
            then:
            task.unixScript == new File(task.outputDir, 'myApp')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top