use of com.linkedin.pegasus.generator.test.idl.enums.FruitsArray in project rest.li by linkedin.
the class ArrayGeneratorTest method testWithRecordArray.
@Test
public void testWithRecordArray() throws Throwable {
String json = load("WithRecordArray.json");
WithRecordArray original = new WithRecordArray().setEmpties(new EmptyArray(new Empty(), new Empty(), new Empty())).setFruits(new FruitsArray(Fruits.APPLE, Fruits.BANANA, Fruits.ORANGE));
assertJson(original, json);
WithRecordArray roundTripped = new WithRecordArray(roundTrip(original.data()));
assertJson(roundTripped, json);
}
Aggregations