compiler/tests/extras/PPTokenizedSmalltalkParserVerificationTest.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Fri, 24 Jul 2015 19:42:09 +0100
changeset 504 0fb1f0799fc1
parent 502 1e45d3c96ec5
permissions -rw-r--r--
Portability fix: override #new for class that implements #initialize #initialize is not sent by default.

"{ Package: 'stx:goodies/petitparser/compiler/tests/extras' }"

"{ NameSpace: Smalltalk }"

PPCSmalltalkVerificationTest subclass:#PPTokenizedSmalltalkParserVerificationTest
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'PetitCompiler-Extras-Tests-Smalltalk'
!

!PPTokenizedSmalltalkParserVerificationTest class methodsFor:'as yet unclassified'!

resources
    ^ (OrderedCollection with: PPTokenizedSmalltalkParserResource)
        addAll: super resources;
        yourself
! !

!PPTokenizedSmalltalkParserVerificationTest methodsFor:'accessing'!

compiledSmalltalkGrammarClass
    ^ (Smalltalk at: #PPTokenizedSmalltalkParser)
! !

!PPTokenizedSmalltalkParserVerificationTest methodsFor:'tests'!

testSmalltalk
    super testSmalltalk
!

testSmalltalkClass
    super testSmalltalkClass
!

testSmalltalkObject
    super testSmalltalkObject
! !