compiler/tests/extras/PPTokenizedSmalltalkParserVerificationTest.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 PPCSmalltalkVerificationTest subclass:#PPTokenizedSmalltalkParserVerificationTest
       
     6 	instanceVariableNames:''
       
     7 	classVariableNames:''
       
     8 	poolDictionaries:''
       
     9 	category:'PetitCompiler-Extras-Tests-Smalltalk'
       
    10 !
       
    11 
       
    12 !PPTokenizedSmalltalkParserVerificationTest class methodsFor:'as yet unclassified'!
       
    13 
       
    14 resources
       
    15     ^ (OrderedCollection with: PPTokenizedSmalltalkParserResource)
       
    16         addAll: super resources;
       
    17         yourself
       
    18 ! !
       
    19 
       
    20 !PPTokenizedSmalltalkParserVerificationTest methodsFor:'accessing'!
       
    21 
       
    22 compiledSmalltalkGrammarClass
       
    23     ^ (Smalltalk at: #PPTokenizedSmalltalkParser)
       
    24 ! !
       
    25 
       
    26 !PPTokenizedSmalltalkParserVerificationTest methodsFor:'tests'!
       
    27 
       
    28 testSmalltalk
       
    29     super testSmalltalk
       
    30 !
       
    31 
       
    32 testSmalltalkClass
       
    33     super testSmalltalkClass
       
    34 !
       
    35 
       
    36 testSmalltalkObject
       
    37     super testSmalltalkObject
       
    38 ! !
       
    39