package grading;

import java.util.Collection;

/**
 * A taken test has an associated list of studentTakenTests, which are
 * essentially instances of the completed test with answers filled in, and an
 * associated student who completed the test.
 * 
 * @author (Casey Sheehan)
 * @version (Milestone 6)
 */
abstract class TakenTest {
  int maxPoints; // maximum possible points
  double averageScore; // current average score for this test

  Collection<StudentTakenTest> studentTests;
}