public void testGeneratedJsonForClassWithWrapperType() {
BigQueryDataMarshallerTester<SimpleJsonWithWrapperTypes> tester =
new BigQueryDataMarshallerTester<SimpleJsonWithWrapperTypes>(new BigQueryMarshallerByType<
SimpleJsonWithWrapperTypes>(SimpleJsonWithWrapperTypes.class));
tester.testGeneratedJson("{\"name\":\"test\",\"id\":1, \"value\":1.5}",
new SimpleJsonWithWrapperTypes(Integer.valueOf(1), "test", Float.valueOf("1.5")));
}