test/MCDictionaryRepositoryTest.st
changeset 27 baf2c6011c7d
child 823 5cd3a89d5921
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/MCDictionaryRepositoryTest.st	Wed Nov 22 14:02:50 2006 +0100
@@ -0,0 +1,33 @@
+"{ Package: 'stx:goodies/monticello/test' }"
+
+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/test/MCDictionaryRepositoryTest.st,v 1.1 2006-11-22 13:02:50 cg Exp $'
+! !