Examples of BbbMeta


Examples of org.slim3.datastore.meta.BbbMeta

     * @throws Exception
     *
     */
    @Test
    public void convertValueForDatastoreForModelRef() throws Exception {
        BbbMeta bbbMeta = BbbMeta.get();
        MyCriterion criterion = new MyCriterion(bbbMeta.hogeRef);
        Bbb bbb = new Bbb();
        Key key = Datastore.createKey("Hoge", 1);
        bbb.getHogeRef().setKey(key);
        assertThat(
View Full Code Here

Examples of org.slim3.datastore.meta.BbbMeta

    /**
     * @throws Exception
     */
    @Test
    public void getClassHierarchyList() throws Exception {
        BbbMeta bbbMeta = new BbbMeta();
        assertThat(
            bbbMeta.getClassHierarchyList(),
            hasItem(Bbb.class.getName()));
    }
View Full Code Here

Examples of org.slim3.datastore.meta.BbbMeta

    /**
     * @throws Exception
     */
    @Test(expected = UnsupportedOperationException.class)
    public void whetherClassHierarchyListIsUnmodified() throws Exception {
        BbbMeta bbbMeta = new BbbMeta();
        bbbMeta.getClassHierarchyList().add("hoge");
    }
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.