// ------------------------------------------------------------------------- /** * This test case class contains all of the tests for the Brick class. * * @author Stephen Edwards * @version Feb 22, 2013 */ public class BrickTest extends junit.framework.TestCase { //~ Instance/static variables ............................................. private Brick brick; //~ Methods ............................................................... // ---------------------------------------------------------- /** * Sets up the test fixture. * Called before every test case method. */ protected void setUp() { brick = new Brick(4, 3, 2); } /*# Insert your test cases here */ }