package lab; /** * Runs the JUnit test case ColorTest. * * @author Franck van Breugel */ public class RunTest { public static void main(String[] args) throws Throwable { ColorTest tester = new ColorTest(); tester.testConstructorAndAccessors(); } }