RegressionTests__UTF8TestClass.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Thu, 05 Jan 2017 23:36:28 +0000
branchjv
changeset 1567 e17701a073f9
parent 1447 2351db93aa5b
permissions -rw-r--r--
Added abstract VMSpawningTestCase ...a base superclass for tests that spawns new smalltalk - such as VMCrashTests and SnapshotRestartTests.

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