RegressionTests__UTF8TestClass.st
author sr
Mon, 17 Jun 2019 15:11:33 +0200
changeset 2324 98d710589596
parent 2046 0b67c1c9f55f
permissions -rw-r--r--
#BUGFIX by Stefan Reise class: RegressionTests::MutabilityTest changed: #test01_immutability #test02_mutability

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