test/MCDictionaryRepositoryTest.st
author Claus Gittinger <cg@exept.de>
Tue, 08 May 2018 19:58:20 +0200
changeset 1043 aeecdb5610e4
parent 823 5cd3a89d5921
child 1121 c5661215109c
permissions -rw-r--r--
#FEATURE by cg class: MCPostscriptDefinition added: #asChange

"{ Package: 'stx:goodies/monticello/test' }"

MCRepositoryTest subclass:#MCDictionaryRepositoryTest
	instanceVariableNames:'dict'
	classVariableNames:''
	poolDictionaries:''
	category:'SCM-Monticello-Tests'
!


!MCDictionaryRepositoryTest methodsFor:'as yet unclassified'!

addVersion: aVersion
	dict at: aVersion info put: aVersion
!

deleteNode: aNode
	dict removeKey: aNode
!

dictionary
	^ dict ifNil: [dict _ Dictionary new]
!

setUp
	repository _  MCDictionaryRepository new dictionary: self dictionary
! !

!MCDictionaryRepositoryTest class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/goodies/monticello/test/MCDictionaryRepositoryTest.st,v 1.2 2013-05-29 00:02:26 vrany Exp $'
! !