import java.io.*; // ------------------------------------------------------------------------- /** * This test case class contains all of the tests for the LineCounter. * * @author Stephen Edwards * @version Feb 22, 2005 */ public class LineCounterTest extends junit.framework.TestCase { //~ Instance/static variables ............................................. private LineCounter lineCounter; //~ Methods ............................................................... // ---------------------------------------------------------- /** * Sets up the test fixture. * Called before every test case method. */ protected void setUp() { lineCounter = new LineCounter(); } // ---------------------------------------------------------- /** * Create your own test cases like this. */ public void testSomeBehavior() { // Add your own actions and assertions // assertEquals( ..., ... ); } }