diff --git a/src/IllimaniAllocationProfiler-Tests/IllProfilerMpHandlerTest.class.st b/src/IllimaniAllocationProfiler-Tests/IllProfilerMpHandlerTest.class.st index 34ba558..1452d8e 100644 --- a/src/IllimaniAllocationProfiler-Tests/IllProfilerMpHandlerTest.class.st +++ b/src/IllimaniAllocationProfiler-Tests/IllProfilerMpHandlerTest.class.st @@ -43,24 +43,6 @@ IllProfilerMpHandlerTest >> testCaptureAllObjectsAndIgnoringClasses [ self assert: (handler shouldICaptureTheObject: nil) ] -{ #category : 'tests' } -IllProfilerMpHandlerTest >> testCleanProfilingData [ - - handler - objectsToCapture: { Color . Point }; - objectsToIgnore: { ByteString }; - samplingRate: 20; - samplingCounter: 22. - - handler cleanObjectAllocations. - - self assert: handler objectAllocations isEmpty. - self assert: handler samplingRate closeTo: 100 / 20. - self assert: handler samplingCounter equals: 0. - self assertCollection: handler objectsToCapture hasSameElements: { Color . Point }. - self assertCollection: handler objectsToIgnore hasSameElements: { ByteString } -] - { #category : 'tests' } IllProfilerMpHandlerTest >> testObjectsToCapture [