/** * Authors: Frederik Leyvraz, David Degenhardt * License: GNU General Public License v3.0 only * Version: 1.0.0 */ package ch.bfh.ti.latexindexer; import junit.framework.Test; import junit.framework.TestCase; import junit.framework.TestSuite; /** * Unit test for simple App. */ public class MainTest extends TestCase { /** * Create the test case * * @param testName name of the test case */ public MainTest(String testName ) { super( testName ); } /** * @return the suite of tests being tested */ public static Test suite() { return new TestSuite( MainTest.class ); } /** * Rigourous Test :-) */ public void testApp() { assertTrue( true ); } }