protected Object deserializeFromJson(String json, Class type) throws IOException {
   return JsonHelpers.fromJson(json, type);
 }
 protected Object deserializeFromJsonFixtureFile(String fixturePath, Class type)
     throws IOException {
   return JsonHelpers.fromJson(FixtureHelpers.fixture("fixtures/ " + fixturePath), type);
 }