compiler/tests/extras/PPCompiledExpressionsVerificationTest.st
changeset 510 869853decf31
parent 509 fd22630c7e62
child 511 527038bc8edf
equal deleted inserted replaced
509:fd22630c7e62 510:869853decf31
     1 "{ Package: 'stx:goodies/petitparser/compiler/tests/extras' }"
       
     2 
       
     3 "{ NameSpace: Smalltalk }"
       
     4 
       
     5 PPCExpressionsVerificationTest subclass:#PPCompiledExpressionsVerificationTest
       
     6 	instanceVariableNames:''
       
     7 	classVariableNames:''
       
     8 	poolDictionaries:''
       
     9 	category:'PetitCompiler-Extras-Tests-Expressions'
       
    10 !
       
    11 
       
    12 
       
    13 !PPCompiledExpressionsVerificationTest class methodsFor:'as yet unclassified'!
       
    14 
       
    15 resources
       
    16     ^ (OrderedCollection with: PPCompiledExpressionGrammarResource)
       
    17         addAll: super resources;
       
    18         yourself
       
    19 ! !
       
    20 
       
    21 !PPCompiledExpressionsVerificationTest methodsFor:'as yet unclassified'!
       
    22 
       
    23 compiledGrammarClass
       
    24     ^ (Smalltalk at: #PPCompiledExpressionGrammar)
       
    25 ! !
       
    26 
       
    27 !PPCompiledExpressionsVerificationTest methodsFor:'testing'!
       
    28 
       
    29 testExpressions
       
    30     ^ super testExpressions
       
    31 !
       
    32 
       
    33 testSanity
       
    34     ^ super testSanity
       
    35 ! !
       
    36 
       
    37 !PPCompiledExpressionsVerificationTest class methodsFor:'documentation'!
       
    38 
       
    39 version_HG
       
    40 
       
    41     ^ '$Changeset: <not expanded> $'
       
    42 ! !
       
    43