package testtool.Tests; import testtool.Questions.*; import testtool.StudentFunctionality.*; import testtool.MainUIFunctionality.*; import java.util.Collection; /** * * A question group is a group of questions with a header to give special instructions for the questions. * * @author * @version * **/ public class QuestionGroup { /** Default Constructor **/ public QuestionGroup() { } protected String h; protected Collection qs; }