Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for assertJarDependencyHasTestAttribute (0.42 sec)

  1. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseTestConfigurationsWithExternalDependenciesIntegrationTest.groovy

            buildFile << """
                dependencies {
                    testImplementation 'org:lib:1.0'
                }
            """
    
            when:
            run 'eclipse'
    
            then:
            assertJarDependencyHasTestAttribute('lib-1.0.jar')
        }
    
        @ToBeFixedForConfigurationCache
        def "dependencies in jvm test suites are marked with test classpath attribute"() {
            buildFile.text = """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/AbstractEclipseTestSourcesIntegrationTest.groovy

        }
    
        void assertSourceDirectoryDoesNotHaveTestAttribute(String path) {
            sourceDirectoryDoesNotHaveTestAttribute(classpath, path)
        }
    
        void assertJarDependencyHasTestAttribute(String jarName) {
            jarHasTestAttribute(classpath, jarName)
        }
    
        void assertJarDependencyDoesNotHaveTestAttribute(String jarName) {
            jarDoesNotHaveTestAttribute(classpath, jarName)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top