assertNull(x.type);
}
@Test
public void test_output_not_quote_name() {
Base b = Base.make("Red");
String json = Json.toJson(b, JsonFormat.compact().setQuoteName(false));
Base b2 = Json.fromJson(Base.class, json);
assertEquals(b.getCountryId(), b2.getCountryId());
assertEquals(b.getLevel(), b2.getLevel());
assertEquals(b.getName(), b2.getName());
}