Package com.inspiresoftware.lib.dto.geda.assembler.examples.simple

Examples of com.inspiresoftware.lib.dto.geda.assembler.examples.simple.TestEntity15Class


    @SuppressWarnings("unchecked")
  @Test
    public void testMapBindingOnImmutableObjects() throws GeDAException {
        final TestEntity16Class entities = new TestEntity16Class(
            (Collection) Arrays.asList(
                new TestEntity15Class("1", "one"),
                new TestEntity15Class("2", "two"),
                new TestEntity15Class("3", "three")
            )
        );

        final TestDto17Class dtos = new TestDto17Class();
View Full Code Here


  @Test
    public void testCollectionMappingWithImmutableEntityForReadOnly() throws GeDAException {

        final TestEntity16Class entities = new TestEntity16Class(
            (Collection) Arrays.asList(
                new TestEntity15Class("1", "one"),
                new TestEntity15Class("2", "two"),
                new TestEntity15Class("3", "three")
            )
        );

        final TestDto16Class dtos = new TestDto16Class();
View Full Code Here

TOP

Related Classes of com.inspiresoftware.lib.dto.geda.assembler.examples.simple.TestEntity15Class

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.