package testtool.Main; import java.util.Collection; /** * * A test consists of one or more blocks of questions. (When using the Simpl *e test generation interface, only one block is created.) During the * creation phase, a QuestionBlock does not yet contain questions, only th *e information needed to select questions; once a test is generated, th *e questions are populated, but the specifications are retained in case the questions need to be replaced. * * @author * @version * **/ public class QuestionBlock { /** Default Constructor **/ public QuestionBlock() { } protected ConstraintSet constraints; protected Collection questions; }