package tests; import questions.Question; /* A TestQuestion contains the question that will be on the test, as well as * the points value for that question that will be used to calculate the * score for the test. */ public abstract class TestQuestion { Question question; int points; }