compiler/tests/extras/PPCompiledExpressionsVerificationTest.st
changeset 459 4751c407bb40
child 461 5986bf6d7d60
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/compiler/tests/extras/PPCompiledExpressionsVerificationTest.st	Tue May 12 01:24:03 2015 +0100
@@ -0,0 +1,35 @@
+"{ 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
+! !
+