package testtool.Grade;

import testtool.StudentTesting.*;
import testtool.Question.*;
import testtool.Test.*;

import java.util.Collection;

/**
 *
 * 
		  This is a Test that has gone through Automatic grading and 
		  manual
 * grading if needed, has a final score, and also contains
		  any comments
 * from the instructor as well as a time it was Graded,
		  Edited, and Posted.  TotalPointsEarned correlates to the total score of the test.
		  * 
 * @author 
 * @version 
 *
 **/

public class GradedTest extends CompletedTest {

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

     protected Collection<GradedQuestion> object;

     protected Collection<CompletedQuestion> object;

     protected int totalPointsEarned;

     protected String gradedTime;

     protected String postedTime;

     protected Collection<InstructorComment> object;

}