package testtool.Tests;

import testtool.Questions.*;
import testtool.StudentFunctionality.*;
import testtool.MainUIFunctionality.*;

import java.util.Collection;

/**
 *
 * 
      A TakenTest object is a test that has been taken, but not yet 
     
 * graded. It contains all the questions from the test, as well 
      as the student's answers.
     * 
 * @author 
 * @version 
 *
 **/

public class TakenTest extends Test {

     /** Default Constructor **/
     public TakenTest() {
          super();
     }

     protected Collection<String> answers;

     protected boolean flag;

     protected Student name;

}