Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 52 of 52 for xdstype (0.15 sec)

  1. testing/internal-integ-testing/src/test/groovy/org/gradle/test/fixtures/maven/MavenLocalModuleTest.groovy

            when:
            String packaging = mavenLocalModule.packaging
    
            then:
            packaging == null
        }
    
        def "Check type for set type"() {
            when:
            String type = mavenLocalModule.hasType('war').type
    
            then:
            type != null
            type == 'war'
        }
    
        def "Check type for no set type"() {
            when:
            String type = mavenLocalModule.type
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/test/groovy/org/gradle/test/fixtures/maven/MavenFileModuleTest.groovy

            when:
            String packaging = mavenFileModule.packaging
    
            then:
            packaging == null
        }
    
        def "Check type for set type"() {
            when:
            String type = mavenFileModule.hasType('war').type
    
            then:
            type != null
            type == 'war'
        }
    
        def "Check type for no set type"() {
            when:
            String type = mavenFileModule.type
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top