@Test
  public void testCreateJsonObjectReturnsJsonObject() throws JSONException {
    JSONObject jsonObject = mJsonParser.createJsonObject(bufferedReader);
    String horoscope = jsonObject.getString("prediction");

    assertEquals("Test1", horoscope);
  }