RegressionTests__UTF8TestClass.st
author Claus Gittinger <cg@exept.de>
Thu, 28 Mar 2019 12:21:47 +0100
changeset 2195 864930fc306d
parent 2046 0b67c1c9f55f
permissions -rw-r--r--
#QUALITY by cg class: RegressionTests::QDoubleTests changed: #test99_misc #test_01_instance_creation #test_02_addition #test_03_subtract #test_04_relops #test_05_multiply #test_06_exp #test_06b_log10 #test_07_reading #test_08_conversion

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