package questions;

import java.util.Collection;
import tests.Course;
/**
 * A Test Bank holds questions specific to a certain course, as defined by the instructor. 
 * A Test Bank includs functionalities to add, remove, find, and sort questions in the bank.
 */
public abstract class TestBank extends QuestionBank{

	Course course;
	Collection<Question> questions;
}