Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Diff on comments #1

Merged
36 changes: 36 additions & 0 deletions src/Famix-Diff-Core-Tests/AbstractFamixDiffWithModelTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,24 @@ Class {
#category : #'Famix-Diff-Core-Tests'
}

{ #category : #running }
AbstractFamixDiffWithModelTest >> assertIdentityMatch: entity1 to: entity2 [

self assert: (entity1 identityMatch: entity2 resolver: self resolver)
]

{ #category : #running }
AbstractFamixDiffWithModelTest >> assertMoveMatch: entity1 to: entity2 [

self assert: (entity1 moveMatch: entity2 resolver: self resolver)
]

{ #category : #running }
AbstractFamixDiffWithModelTest >> assertRenameMatch: entity1 to: entity2 [

self assert: (entity1 renameMatch: entity2 resolver: self resolver)
]

{ #category : #accessing }
AbstractFamixDiffWithModelTest >> baseEntityNamed: aString [

Expand All @@ -33,6 +51,24 @@ AbstractFamixDiffWithModelTest >> createChange: changeClass with: baseEntity and
diff result add: change
]

{ #category : #running }
AbstractFamixDiffWithModelTest >> denyIdentityMatch: entity1 to: entity2 [

self deny: (entity1 identityMatch: entity2 resolver: self resolver)
]

{ #category : #running }
AbstractFamixDiffWithModelTest >> denyMoveMatch: entity1 to: entity2 [

self deny: (entity1 moveMatch: entity2 resolver: self resolver)
]

{ #category : #running }
AbstractFamixDiffWithModelTest >> denyRenameMatch: entity1 to: entity2 [

self deny: (entity1 renameMatch: entity2 resolver: self resolver)
]

{ #category : #accessing }
AbstractFamixDiffWithModelTest >> resolver [

Expand Down
Loading
Loading