package grade;

import users.*;

/**
 * The TestResult object is derived from Section 2.6, Test Grading, and can be
 * seen in Figure 2.6.1 as a tuple consisting of a student and their score.
 */
public abstract class TestResult {
  /**
   * The student data field contains the student that the result belongs to. 
   */
  Student student;
  /**
   * The score data field contains the score corresponding of a student on a
   * test.
   */
  double score;
}