Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getComponentFile (0.22 sec)

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

            assertHasExpectedContents(getClasspathFile(project:"api"), "apiClasspath.xml")
            assertHasExpectedContents(getProjectFile(project:"api"), "apiProject.xml")
            assertHasExpectedContents(getComponentFile(project:"api"), "apiWtpComponent.xml")
            assertHasExpectedContents(getFacetFile(project:"api"), "apiWtpFacet.xml")
            assertHasExpectedProperties(getJdtPropertiesFile(project:"api"), "apiJdt.properties")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/eclipse/AbstractEclipseIntegrationTest.groovy

        protected File getProjectFile(Map options) {
            getFile(options, ".project")
        }
    
        protected File getClasspathFile(Map options) {
            getFile(options, ".classpath")
        }
    
        protected File getComponentFile(Map options) {
            getFile(options, ".settings/org.eclipse.wst.common.component")
        }
    
        protected File getFacetFile(Map options) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpModelIntegrationTest.groovy

                resource sourcePath: 'xxxResource', deployPath: 'deploy-xxx'
                resource sourcePath: 'yyyResource', deployPath: 'deploy-yyy'
              }
    """
            //then
            def component = getComponentFile().text
    
            assert component.contains('xxxSource')
            assert !component.contains('yyySource')
    
            assert component.contains('xxxResource')
            assert !component.contains('yyyResource')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 16.3K bytes
    - Viewed (0)
Back to top