diff -r dc5e958a20dc -r cf319f2e56d0 Tools__TestRunner2.st --- a/Tools__TestRunner2.st Mon May 09 21:47:57 2016 +0200 +++ b/Tools__TestRunner2.st Thu May 12 08:33:55 2016 +0200 @@ -1,5 +1,3 @@ -"{ Encoding: utf8 }" - " Copyright (c) 2007-2010 Jan Vrany, SWING Research Group, Czech Technical University in Prague Copyright (c) 2009-2010 eXept Software AG @@ -1943,7 +1941,7 @@ ^nm ]. aClass isAbstract ifTrue:[ - nm := (nm,' ') allItalic colorizeAllWith:Color gray + nm := (nm,' ') allItalic withColor:Color gray ]. ^nm @@ -2247,9 +2245,9 @@ "/ please change as required (and remove this comment) - PassedText := ' [passed]' asText colorizeAllWith: Tools::TestRunner2 passedColor darker. - FailedText := ' [','failed' allBold,']' asText colorizeAllWith: Tools::TestRunner2 failedColor "darker". - ErrorText := ' [','error' allBold,']' asText colorizeAllWith: Tools::TestRunner2 errorColor "darker". + PassedText := ' [passed]' withColor: Tools::TestRunner2 passedColor darker. + FailedText := ' [','failed' allBold,']' withColor: Tools::TestRunner2 failedColor "darker". + ErrorText := ' [','error' allBold,']' withColor: Tools::TestRunner2 errorColor "darker". "Modified: / 07-02-2010 / 15:06:04 / Jan Vrany " ! !