RegressionTests__UTF8TestClass.st
author sr
Tue, 19 Sep 2017 10:12:30 +0200
changeset 1707 76213a555906
parent 1447 2351db93aa5b
child 1567 e17701a073f9
child 2046 0b67c1c9f55f
permissions -rw-r--r--
#BUGFIX by sr class: RegressionTests::Win32OLETests changed: #test01_SysAllocString #test02_GuidFromProgID #test03_verbsEnumerator #test20_CreateInstance

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