Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SomeApp (0.16 sec)

  1. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BasicTypeInitIntegrationTest.groovy

            when:
            run('init', '--project-name', 'someApp', '--dsl', scriptDsl.id, '--incubating')
    
            then:
            def dslFixture = dslFixtureFor(scriptDsl)
            dslFixture.assertGradleFilesGenerated()
            dslFixture.settingsFile.assertContents(dslFixture.containsStringAssignment('rootProject.name', 'someApp'))
    
            when:
            run('help')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheJavaIntegrationTest.groovy

            assertTestsExecuted("ThingTest", "ok")
        }
    
        def "build on Java application project with no dependencies"() {
            given:
            settingsFile << """
                rootProject.name = 'someapp'
            """
            buildFile << """
                plugins { id 'application' }
                application.mainClass = 'Thing'
            """
            file("src/main/java/Thing.java") << """
                class Thing {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 21.9K bytes
    - Viewed (0)
Back to top