package testtool.Main;


import java.util.Collection;

/**
 *
 *  A ProctoredTest is a test that is in progress, or has been completed, it also contains a list of the students in a class.  * 
 * @author 
 * @version 
 *
 **/

public class ProctoredTest {

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

     }

     protected boolean isInProgress_;

     protected boolean ipause;

     protected Test test;

     protected int timeLimit;

     protected Collection<ProctoredStudent> object;

}