1 33 34 package edu.rice.cs.drjava; 35 36 import junit.framework.TestCase; 37 import edu.rice.cs.util.swing.Utilities; 38 39 43 public class DrJavaTestCase extends TestCase { 44 45 46 public DrJavaTestCase() { super(); } 47 48 51 public DrJavaTestCase(String name) { super(name); } 52 53 56 protected void setUp() throws Exception { 57 super.setUp(); 58 Utilities.TEST_MODE = true; 59 } 60 61 64 protected void tearDown() throws Exception { super.tearDown(); } 65 } 66 | Popular Tags |