package testtool.Tests; import testtool.Questions.*; import testtool.StudentFunctionality.*; import testtool.MainUIFunctionality.*; import java.util.Collection; /** * * A Test represents a collection of questions that have been compiled into a test that can be taken, and the time limit for the test. * * @author * @version * **/ public class Test { /** Default Constructor **/ public Test() { } protected Collection questions; protected int time; }