MCMockAPoolDictionary.st
author Claus Gittinger <cg@exept.de>
Mon, 14 May 2018 02:21:18 +0200
changeset 1048 582b3a028cbc
parent 644 213b6a91f384
child 1095 87f223484bc3
permissions -rw-r--r--
#FEATURE by cg class: MCMethodDefinition changed: #postloadOver:
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
90
1b5529f69690 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"{ Package: 'stx:goodies/monticello' }"
1b5529f69690 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
1b5529f69690 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
SharedPool subclass:#MCMockAPoolDictionary
1b5529f69690 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
	instanceVariableNames:''
1b5529f69690 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
	classVariableNames:''
1b5529f69690 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
	poolDictionaries:''
644
213b6a91f384 category change
Claus Gittinger <cg@exept.de>
parents: 293
diff changeset
     7
	category:'SCM-Monticello-Mocks'
90
1b5529f69690 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
!
1b5529f69690 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
1b5529f69690 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
1b5529f69690 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
!MCMockAPoolDictionary class methodsFor:'documentation'!
1b5529f69690 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
293
e450a0759d8c initial checkin
Claus Gittinger <cg@exept.de>
parents: 202
diff changeset
    13
version
644
213b6a91f384 category change
Claus Gittinger <cg@exept.de>
parents: 293
diff changeset
    14
    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCMockAPoolDictionary.st,v 1.4 2012-09-11 21:23:37 cg Exp $'
293
e450a0759d8c initial checkin
Claus Gittinger <cg@exept.de>
parents: 202
diff changeset
    15
!
e450a0759d8c initial checkin
Claus Gittinger <cg@exept.de>
parents: 202
diff changeset
    16
202
c159b433becd added: #version_CVS
Claus Gittinger <cg@exept.de>
parents: 90
diff changeset
    17
version_CVS
644
213b6a91f384 category change
Claus Gittinger <cg@exept.de>
parents: 293
diff changeset
    18
    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCMockAPoolDictionary.st,v 1.4 2012-09-11 21:23:37 cg Exp $'
202
c159b433becd added: #version_CVS
Claus Gittinger <cg@exept.de>
parents: 90
diff changeset
    19
!
c159b433becd added: #version_CVS
Claus Gittinger <cg@exept.de>
parents: 90
diff changeset
    20
c159b433becd added: #version_CVS
Claus Gittinger <cg@exept.de>
parents: 90
diff changeset
    21
version_SVN
c159b433becd added: #version_CVS
Claus Gittinger <cg@exept.de>
parents: 90
diff changeset
    22
    ^ '§Id: MCMockAPoolDictionary.st 5 2010-08-29 07:30:29Z vranyj1 §'
90
1b5529f69690 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
! !