compiler/tests/extras/PPTokenizedSmalltalkParserVerificationTest.st
changeset 502 1e45d3c96ec5
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/compiler/tests/extras/PPTokenizedSmalltalkParserVerificationTest.st	Fri Jul 24 15:06:54 2015 +0100
@@ -0,0 +1,39 @@
+"{ 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
+! !
+