GunitTest.java revision 324c4644fee44b9898524c09511bd33c3f12e2df
1package org.antlr.gunit;
2
3import junit.framework.Test;
4import junit.framework.TestCase;
5import junit.framework.TestSuite;
6
7/**
8 * Unit test for gUnit itself....
9 */
10public class GunitTest
11    extends TestCase
12{
13    /**
14     * Create the test case
15     *
16     * @param testName name of the test case
17     */
18    public GunitTest( String testName )
19    {
20        super( testName );
21    }
22
23    /**
24     * @return the suite of tests being tested
25     */
26    public static Test suite()
27    {
28        return new TestSuite( GunitTest.class );
29    }
30
31    /**
32     * Rigourous Test :-)
33     */
34    public void testGunitTest()
35    {
36        assertTrue( true );
37    }
38}
39