In Pharo 5, it was possible to do...TestCase subclass: #Example....etcExample >> test1[ TranscriptcrShow: Processor activeProcess priority printString;tab;show: Processor activeProcess name.self halt.TranscriptcrShow: Processor activeProcess effectiveProcess priority printString;tab;show: Processor activeProcess effectiveProcess name��] forkAt: 39 named: 'TEST'....and when this was run, a debugger would show for the forked code��and stepping through it would produce the following output...39 TEST39 TESTIn Pharo 71047, no debugger shows up,��and you only get one...39 TESTI guess this because more cleanup of tests is being done,but it makes it harder to debug multi-threaded tests when��debugger can't replicate the way the code normally runs.