Package de.zalando.typemapper.namedresult.results

Examples of de.zalando.typemapper.namedresult.results.ClassWithStringSetWithEmbed


        final ResultSet rs = ps.executeQuery();
        final TypeMapper<ClassWithStringSetWithEmbed> mapper = TypeMapperFactory.createTypeMapper(
                ClassWithStringSetWithEmbed.class);
        int i = 0;
        while (rs.next()) {
            ClassWithStringSetWithEmbed result = (ClassWithStringSetWithEmbed) mapper.mapRow(rs, i++);
            Assert.assertNotNull(result);
            Assert.assertEquals("str", result.getSet().getStr());
            Assert.assertNotNull(result.getSet().getArray());
            Assert.assertTrue(result.getSet().getArray().isEmpty());
        }

    }
View Full Code Here

TOP

Related Classes of de.zalando.typemapper.namedresult.results.ClassWithStringSetWithEmbed

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.