package testtool.Main;


import java.util.Collection;

/**
 *
 *  A TestWorkspace is an object containing all of the 
		  test-taking content for a student * 
 * @author 
 * @version 
 *
 **/

public class TestTakingWorkspace {

     /** Default Constructor **/
     public TestTakingWorkspace() {

     }

     protected String name_;

     protected String proctor_;

     protected String class_;

     protected Problem problem;

     protected AnsweredTest answeredTest;

     protected Testtype testtype;

}