Package org.mongojack.mock

Examples of org.mongojack.mock.MockObjectIntId


        assertEquals(object, coll.findOne());
    }

    @Test
    public void testIntId() {
        MockObjectIntId object = new MockObjectIntId();
        object._id = 123456;

        JacksonDBCollection<MockObjectIntId, Integer> coll = getCollectionAs(
                MockObjectIntId.class, Integer.class);

        coll.insert(object);
        MockObjectIntId result = coll.findOne();
        assertEquals(object._id, result._id);
    }
View Full Code Here

TOP

Related Classes of org.mongojack.mock.MockObjectIntId

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.