Examples of AaaMeta


Examples of org.slim3.datastore.meta.AaaMeta

    /**
     * @throws Exception
     */
    @Test
    public void getModelMetaWithEntity() throws Exception {
        AaaMeta aaaMeta = new AaaMeta();
        Entity entity = new Entity("Aaa");
        entity.setProperty(
            aaaMeta.getClassHierarchyListName(),
            Arrays.asList(Bbb.class.getName()));
        ModelMeta<Aaa> modelMeta = DatastoreUtil.getModelMeta(aaaMeta, entity);
        assertThat(modelMeta, is(notNullValue()));
        assertThat(modelMeta.getModelClass().getName(), is(Bbb.class.getName()));
    }
View Full Code Here

Examples of org.slim3.datastore.meta.AaaMeta

    /**
     * @throws Exception
     */
    @Test(expected = IllegalArgumentException.class)
    public void getModelMetaWithEntityForIllegalClass() throws Exception {
        AaaMeta aaaMeta = new AaaMeta();
        Entity entity = new Entity("Aaa");
        entity.setProperty(
            aaaMeta.getClassHierarchyListName(),
            Arrays.asList(Bbb.class.getName()));
        DatastoreUtil.getModelMeta(meta, entity);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.