compiler/tests/extras/PPCompiledSmalltalkGrammarResource.st
changeset 510 869853decf31
parent 509 fd22630c7e62
child 511 527038bc8edf
--- a/compiler/tests/extras/PPCompiledSmalltalkGrammarResource.st	Fri Jul 31 08:22:18 2015 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,26 +0,0 @@
-"{ Package: 'stx:goodies/petitparser/compiler/tests/extras' }"
-
-"{ NameSpace: Smalltalk }"
-
-TestResource subclass:#PPCompiledSmalltalkGrammarResource
-	instanceVariableNames:''
-	classVariableNames:''
-	poolDictionaries:''
-	category:'PetitCompiler-Extras-Tests-Smalltalk'
-!
-
-!PPCompiledSmalltalkGrammarResource methodsFor:'as yet unclassified'!
-
-setUp
-    | time configuration |
-    configuration := PPCConfiguration universal.
-    configuration arguments parserName:#PPCompiledSmalltalkGrammar.
-    
-    time := Time millisecondsToRun: [
-        PPSmalltalkGrammar new compileWithConfiguration: configuration.
-    ].
-    Transcript show: 'Smalltalk Grammar compiled in: '; show: time asString; show: 'ms'; cr.
-
-    "Modified: / 10-05-2015 / 07:57:43 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-! !
-