'From Pharo7.0.1 of 6 February 2019 [Build information: Pharo-7.0.1+build.148.sha.442fd72baccda88a9a3a72fe8158ebb31bf1b67a (64 Bit)] on 12 February 2019 at 10:23:11.749524 pm'! WAComponent subclass: #RKATestViewLibrary instanceVariableNames: '' classVariableNames: '' poolDictionaries: '' category: 'RKA24-View'! !RKATestViewLibrary methodsFor: 'updating' stamp: 'SabineM 2/12/2019 21:41'! renderContentOn: html html text: 'hello world'! ! !RKATestViewLibrary methodsFor: 'updating' stamp: 'SabineM 2/12/2019 22:23'! updateRoot: anHtmlRoot super updateRoot: anHtmlRoot. anHtmlRoot link url: RKATestLibrary / #testStylesLess; relationship: 'stylesheet/less'; beCss. anHtmlRoot javascript url: RKATestLibrary / #less141minJs! ! "-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- "! RKATestViewLibrary class instanceVariableNames: ''! !RKATestViewLibrary class methodsFor: 'api' stamp: 'SabineM 2/12/2019 21:42'! registerTestApplication | theApplication | theApplication := WAAdmin register: self asApplicationAt: 'RKX'. ^ theApplication! !