package testtool.TestGeneration; import testtool.Filtering.*; import testtool.Courses.*; import testtool.Courses.*; import testtool.Questions.*; import testtool.QuestionManagement.*; import testtool.TestTaking.*; import java.util.Collection; /** * * A test as it goes through the steps of the generation process. * * @author * @version * **/ public class GeneratedTest { /** Default Constructor **/ public GeneratedTest() { } protected String name; protected LockableInteger targetNumber; protected LockableInteger targetLength; protected Term term; protected String course; protected Collection students; protected Collection sections; protected TestType type; protected Collection databases; protected int deltaLength; protected int deltaNumber; protected int deltaType; }