001    /* $URL: file:///mit/6.170/groups/se64/repository/trunk/gizmoball/test/ImplementationTests.java $ */
002    /* $Id: ImplementationTests.java 252 2007-05-01 02:06:00Z jhawk $ */
003    
004    package gizmoball.test;
005    
006    import junit.framework.*;
007    
008    /**
009     * ImplementationTest is a test suite used to encapsulate all
010     * tests specific to your implementation of this problem set.
011     *
012     * For instance, unit tests for your individual methods would
013     * go here.
014     */
015    public final class ImplementationTests extends TestSuite
016    {
017        public static final String rcsid = "$Id: ImplementationTests.java 252 2007-05-01 02:06:00Z jhawk $";
018    
019        public static Test suite() { return new ImplementationTests(); }
020        public ImplementationTests() {
021            this("Gadgix Gizmoball ImplementationTests"); }
022        public ImplementationTests(String s)
023        {
024            super(s);
025            // addTestSuite(BoardAndBuilderSpecTests.class);
026            addTestSuite(GizmoImpl.class);
027        }
028    }
029    
030    
031    /*
032      Local Variables:
033      c-basic-offset:4
034      End:
035    */