/** test that solution index is correctly parsed */
 @Test
 public void testProperSolutionIndex() throws JSONException {
   QuizQuestion q = QuizQuestion.parseFromJSON(new JSONObject(PROPER_JSON));
   assertEquals("Solution index does not match", 2, q.getSolutionIndex());
 }