Package org.apache.isis.core.tck.dom.poly

Examples of org.apache.isis.core.tck.dom.poly.Stringable


        assertEquals("Class 3", stringBaseEntitySubThree.getStringClassTwo());
        assertEquals("Another String", stringBaseEntitySubThree.getStringClassThree());
    }

    private void interfaceLoad() {
        final Stringable loaded = referencingPolyTypesEntity.getPolyInterfaceType();
        factory.resolve(loaded);
        assertEquals(polyIntImpA.getString(), loaded.getString());
    }
View Full Code Here


        list2 = polySelfRefChild1.getPolySelfRefClasses();
        assertEquals(1, list2.size());
    }

    private void interfaceLoadProperty() {
        final Stringable loaded = referencingPolyTypesEntity.getPolyInterfaceType();
        assertEquals(polyIntImpA.getString(), loaded.getString());
    }
View Full Code Here

    private void interfaceLoadCollection() {
        final List<Stringable> list = referencingPolyTypesEntity.getPolyInterfaces();

        assertEquals(1, list.size());
        final Stringable loaded = list.get(0);

        assertEquals(polyIntImpA.getString(), loaded.getString());
    }
View Full Code Here

    }

    private void interfaceEditLoad() {
        load(); // reload data

        final Stringable loaded = referencingPolyTypesEntity.getPolyInterfaceType();
        assertEquals(polyIntImpB.getString(), loaded.getString());
    }
View Full Code Here

TOP

Related Classes of org.apache.isis.core.tck.dom.poly.Stringable

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.