RegressionTests__UTF8TestClass.st
author Claus Gittinger <cg@exept.de>
Thu, 17 May 2018 23:12:07 +0200
changeset 1932 a3b766c2fe66
parent 1447 2351db93aa5b
child 1567 e17701a073f9
child 2046 0b67c1c9f55f
permissions -rw-r--r--
initial checkin class: RegressionTests::CacheDictionaryTest added: #testAdd #testAddRemove class: RegressionTests::CacheDictionaryTest class

"{ 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$'
! !