Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 52 of 52 for strictlyEquals (0.12 sec)

  1. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/VariableTest.groovy

            Variable variable = createVariable()
            Variable same = createVariable()
            Variable different = createVariable()
            different.path = '/other'
    
            expect:
            variable Matchers.strictlyEqual(same)
            variable != different
        }
    
        private Variable createVariable() {
            Variable variable = new Variable(fileReferenceFactory.fromVariablePath('/GRADLE_CACHE/ant.jar'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/internal/FileReferenceFactoryTest.groovy

            def reference = factory.fromFile(file)
            def sameFile = factory.fromFile(file)
            def differentFile = factory.fromFile(rootDir)
    
            expect:
            reference Matchers.strictlyEqual(sameFile)
            reference != differentFile
        }
    
        private String relpath(File file) {
            return file.absolutePath.replace(File.separator, '/')
        }
    
        private String jarUrL(File file) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top