/* * GameHistoryTest.java * JUnit based test * * Created on December 4, 2006, 8:54 PM */ package chutesladder; import junit.framework.*; import java.awt.BorderLayout; import java.awt.Dimension; import javax.swing.JPanel; import javax.swing.JScrollPane; import javax.swing.JTextArea; /** * * @author Anne */ public class GameHistoryTest extends TestCase { public GameHistoryTest(String testName) { super(testName); } protected void setUp() throws Exception { } protected void tearDown() throws Exception { } /** * Test of showMove method, of class chutesladder.GameHistory. */ public void testShowMove() { System.out.println("showMove"); String Player = ""; int show = 0; GameHistory.showMove(Player, show); // TODO review the generated test code and remove the default call to fail. //fail("The test case is a prototype."); } }