RegressionTests__GCTest.st
author Claus Gittinger <cg@exept.de>
Tue, 28 Sep 2004 16:11:17 +0200
changeset 253 c9431a7f3a15
child 254 2e394c224ff1
permissions -rw-r--r--
initial checkin

"{ Package: 'exept:regression' }"

"{ NameSpace: RegressionTests }"

TestCase subclass:#GCTest
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'tests-Regression'
!


!GCTest methodsFor:'tests'!

testRemSetOverflow1
    |arr|

    arr := Array new:100000.
    1 to:100000 do:[:i |
        arr at:i put:Object new.
    ].

    "
     self new testRemSetOverflow1
    "
! !

!GCTest class methodsFor:'documentation'!

version
    ^ '$Header$'
! !