@Test public void testToStringHasOverride() throws Exception { Applicant test = new Applicant(1, 0.555); String testString = test.toString(); assertEquals("Applicant [ID:1 QS:0.555]", testString); }