Comment #1 on issue 973 by benjamin...@gmail.com: Roassal font organizer singleton inconsistencies http://code.google.com/p/moose-technology/issues/detail?id=973
After making the changes proposed above, all tests are green except ROPlatformTest>>testAddingAPlatform. The problem is since ROPlatform is instantiated, then sent to #add: which calls #check which calls ROPlatform>>fontOrganizerClass which is now subclassResponsibilty.
So further propose adding...
ROPlatform subclass: #ROPlatformSubclassTestResource
and
ROPlatformSubclassTestResource >> fontOrganizerClass ^ ROPlatform subclasses anyOne new fontOrganizerClass.
and modifying ROPlatformTest>>testAddingAPlatform ... platform := ROPlatformSubclassTestResource new.
This makes all Roassal tests green.