Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
692 views

How to generate JUnit sources using maven-gunit-plugin

I have maven configured to run gunit (an ANTLR grammar unit testing tool) through the maven-gunit-plugin. gunit, however, has two different modes. The first mode causes gunit to act as an ...
1
vote
0answers
36 views

What is the options for antlr.gunit.Interp? How to turn on its verbose option?

I certainly make wrong, but antlr's gunit seems to have no option for the users. bash-3.2$ java org.antlr.gunit.Interp --help Exception in thread "main" java.io.FileNotFoundException: --help (No ...
1
vote
1answer
59 views

Passing parameter to parser rule in GUnit

I have a parser rule in ANTLR that takes a parameter. tincture [Tinctures tinctures] returns [Tincture tincture] : { String tinctureName = ""; } ( COLOUR { tinctureName = $COLOUR.text; ...
1
vote
1answer
168 views

How to use GUNIT with MAVEN?

Given a Maven project generated by : mvn archetype:generate -B -DarchetypeGroupId=org.antlr \ -DarchetypeArtifactId=antlr3-maven-archetype \ -DarchetypeVersion=3.2 \ -DgroupId=com.yourcompany ...
0
votes
2answers
96 views

How do I use the Antlr generated junit file made by translating a gunit file

I am trying to make unit tests for multiple return values in Antlr. I have regular unit tests working using gunit. However, I am not too sure what to do with the junit Testgrammar.java file that is ...