RegressionTests__UTF8TestClass.st
author Stefan Vogel <sv@exept.de>
Fri, 11 May 2018 13:51:31 +0200
changeset 1928 a7e400e70e65
parent 1447 2351db93aa5b
child 1567 e17701a073f9
child 2046 0b67c1c9f55f
permissions -rw-r--r--
#BUGFIX by stefan class: RegressionTests::CompilerTests2 comment/format in: #method_argAndVarNames_02 changed: #test_external_function_call_01a #test_external_function_call_01b #test_external_function_call_01c class: RegressionTests::CompilerTests2 class added: #libraryName

"{ Encoding: utf8 }"

"{ Package: 'stx:goodies/regression' }"

"{ NameSpace: RegressionTests }"

Object subclass:#UTF8TestClass
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'tests-Regression'
!


!UTF8TestClass class methodsFor:'others'!

version_CVS
    ^ '$Header$'
! !

!UTF8TestClass methodsFor:'tests'!

someJapaneseButton
    (Button label:'日本') open

    "
     self new someJapaneseButton
    "
!

someJapaneseString
    ^ '日本'
! !

!UTF8TestClass class methodsFor:'documentation'!

version
    ^ '$Header$'
! !