Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 43 of 43 for strictlyEquals (0.78 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/DefaultIvyArtifactNameTest.groovy

            def differentExt = new DefaultIvyArtifactName("name", "type", "other", 'classifier')
            def differentAttr = new DefaultIvyArtifactName("name", "type", "ext", 'other')
    
            expect:
            name Matchers.strictlyEqual(same)
            name != differentName
            name != differentType
            name != differentExt
            name != differentAttr
        }
    
        def "creates for PublishArtifact"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. 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)
  3. 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