RegressionTests__UTF8TestClass.st
author Claus Gittinger <cg@exept.de>
Tue, 02 Apr 2019 10:49:27 +0200
changeset 2209 dd72456e8de4
parent 2046 0b67c1c9f55f
permissions -rw-r--r--
#QUALITY by cg class: RegressionTests::StringTests added: #test03a_unicode16 #test03b_unicode32 #test03c_unicodeStrings removed: #test03_unicode16

"{ Encoding: utf8 }"

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

"{ NameSpace: RegressionTests }"

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


!UTF8TestClass class methodsFor:'others'!

version_CVS
    ^ '$Header$'
! !

!UTF8TestClass methodsFor:'tests'!

someJapaneseButton
    (Button label:'日本') open

    "
     self new someJapaneseButton
    "
!

someJapaneseString
    ^ '日本'
! !

!UTF8TestClass class methodsFor:'documentation'!

version
    ^ '$Header$'
! !