TestCase subclass: GRObjectTest [ testError [ "Make sure #error: signals a subclass of WAPlatformError." self should: [GRObject new error: 'oh dear'] raise: GRError. self should: [GRObject error: 'oh dear'] raise: GRError ] testInitialize [ "Make sure #initialize is called on #new and that calling 'super initialize' doesn't error." self assert: GRObjectStub new foo ] ]