/** * A class that tests the Student and Course * * @author Devin Gray * @version January 29, 2016 */ public class Tester extends junit.framework.TestCase { public void testStudentTest() { Student student1 = new Student("Devin", 1234, 4.0); assertEquals("Devin", student1.getName()); assertEquals(4.0, student1.getGPA(), 0.1); } }