compiler/tests/PPCompiledJavaResource.st
changeset 438 20598d7ce9fa
child 443 2c87ed364404
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/compiler/tests/PPCompiledJavaResource.st	Thu Apr 30 23:43:14 2015 +0200
@@ -0,0 +1,21 @@
+"{ Package: 'stx:goodies/petitparser/compiler/tests' }"
+
+"{ NameSpace: Smalltalk }"
+
+TestResource subclass:#PPCompiledJavaResource
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'PetitCompiler-Tests-Java'
+!
+
+!PPCompiledJavaResource methodsFor:'as yet unclassified'!
+
+setUp
+	| time |
+	time := Time millisecondsToRun: [
+		PPJavaSyntax new compileAs: #PPCompiledJavaSyntax.
+	].
+	Transcript crShow: 'Grammar compiled in: ', time asString, 'ms'.
+! !
+