initial checkin
authorClaus Gittinger <cg@exept.de>
Sat, 20 Aug 2011 14:33:24 +0200
changeset 387 fec7bb3efee9
parent 386 968f6109beb7
child 388 1548b04c7a18
initial checkin
MCDictionaryRepositoryTest.st
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/MCDictionaryRepositoryTest.st	Sat Aug 20 14:33:24 2011 +0200
@@ -0,0 +1,41 @@
+"{ Package: 'stx:goodies/monticello' }"
+
+MCRepositoryTest subclass:#MCDictionaryRepositoryTest
+	instanceVariableNames:'dict'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'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/MCDictionaryRepositoryTest.st,v 1.1 2011-08-20 12:33:24 cg Exp $'
+!
+
+version_CVS
+    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCDictionaryRepositoryTest.st,v 1.1 2011-08-20 12:33:24 cg Exp $'
+!
+
+version_SVN
+    ^ '§Id: MCDictionaryRepositoryTest.st 5 2010-08-29 07:30:29Z vranyj1 §'
+! !