compiler/tests/extras/PPCompiledExpressionsVerificationTest.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Fri, 24 Jul 2015 19:42:09 +0100
changeset 504 0fb1f0799fc1
parent 461 5986bf6d7d60
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 }"

PPCExpressionsVerificationTest subclass:#PPCompiledExpressionsVerificationTest
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'PetitCompiler-Extras-Tests-Expressions'
!


!PPCompiledExpressionsVerificationTest class methodsFor:'as yet unclassified'!

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

!PPCompiledExpressionsVerificationTest methodsFor:'as yet unclassified'!

compiledGrammarClass
    ^ (Smalltalk at: #PPCompiledExpressionGrammar)
! !

!PPCompiledExpressionsVerificationTest methodsFor:'testing'!

testExpressions
    ^ super testExpressions
!

testSanity
    ^ super testSanity
! !

!PPCompiledExpressionsVerificationTest class methodsFor:'documentation'!

version_HG

    ^ '$Changeset: <not expanded> $'
! !