/**
 * The Student class contains all of the data that students need
 * 
 * @author Daniel Gilliland
 */
package user;

import test.*;

public class Student extends User {
	
	/**
	 * The graded, available, and practice tests are all contained in
	 * the tests TestDB
	 */
	public TestDB tests;
}