Package org.apache.sling.models.testmodels.classes

Examples of org.apache.sling.models.testmodels.classes.SubClass


        // no injectors are necessary
    }

    @Test
    public void testClassOrder() {
        SubClass sc = factory.getAdapter(resource, SubClass.class);
        assertTrue(sc.getPostConstructCalledTimestampInSub() > sc.getPostConstructCalledTimestampInSuper());
        assertTrue(sc.getPostConstructCalledTimestampInSuper() > 0);
    }
View Full Code Here

TOP

Related Classes of org.apache.sling.models.testmodels.classes.SubClass

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.