initial checkin
authorClaus Gittinger <cg@exept.de>
Wed, 22 Nov 2006 14:18:51 +0100
changeset 93 f8dc28a32ad0
parent 92 a8d49521898f
child 94 728eacbbea61
initial checkin
MCMockClassB.st
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/MCMockClassB.st	Wed Nov 22 14:18:51 2006 +0100
@@ -0,0 +1,32 @@
+"{ Package: 'stx:goodies/monticello' }"
+
+MCMock subclass:#MCMockClassB
+	instanceVariableNames:'ivarb'
+	classVariableNames:'CVar'
+	poolDictionaries:'MCMockAPoolDictionary'
+	category:'Monticello-Mocks'
+!
+
+MCMockClassB class instanceVariableNames:'ciVar'
+
+"
+ No other class instance variables are inherited by this class.
+"
+!
+
+MCMockClassB comment:'This comment has a bang!! Bang!! Bang!!'
+!
+
+
+!MCMockClassB methodsFor:'numeric'!
+
+two
+
+	^ 2
+! !
+
+!MCMockClassB class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCMockClassB.st,v 1.1 2006-11-22 13:18:51 cg Exp $'
+! !