RegressionTests__UTF8TestClass.st
author Claus Gittinger <cg@exept.de>
Sat, 08 Jun 2019 13:53:58 +0200
changeset 2284 5774f8229f2b
parent 2046 0b67c1c9f55f
permissions -rw-r--r--
#DOCUMENTATION by cg class: RegressionTests::QuadFloatTest class definition added: #setUp #test01b_Nan comment/format in: #test01_Nan changed: #test02_Inf #test03_Conversion #test04_Arithmetic #test05_Comparing #test06_MiscMath #test07_Truncation #test08_Representation class: RegressionTests::QuadFloatTest class added: #documentation

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