Package com.impetus.client.couchdb.entities

Examples of com.impetus.client.couchdb.entities.PersonCouchOTO


    public void testCRUD() {
        AddressCouchOTO address = new AddressCouchOTO();
        address.setAddressId("a");
        address.setStreet("sector 11");

        PersonCouchOTO person = new PersonCouchOTO();
        person.setPersonId("1");
        person.setPersonName("Kuldeep");
        person.setAddress(address);

        em.persist(person);

        em = getNewEM();

        PersonCouchOTO foundPerson = em.find(PersonCouchOTO.class, 1);
        Assert.assertNotNull(foundPerson);
        Assert.assertNotNull(foundPerson.getAddress());
        Assert.assertEquals("1", foundPerson.getPersonId());
        Assert.assertEquals("Kuldeep", foundPerson.getPersonName());
        Assert.assertEquals("a", foundPerson.getAddress().getAddressId());
        Assert.assertEquals("sector 11", foundPerson.getAddress().getStreet());

        foundPerson.setPersonName("KK");
        foundPerson.getAddress().setStreet("sector 12");

        em.merge(foundPerson);

        em = getNewEM();

        foundPerson = em.find(PersonCouchOTO.class, 1);
        Assert.assertNotNull(foundPerson);
        Assert.assertNotNull(foundPerson.getAddress());
        Assert.assertEquals("1", foundPerson.getPersonId());
        Assert.assertEquals("KK", foundPerson.getPersonName());
        Assert.assertEquals("a", foundPerson.getAddress().getAddressId());
        Assert.assertEquals("sector 12", foundPerson.getAddress().getStreet());

        em.remove(foundPerson);
        foundPerson = em.find(PersonCouchOTO.class, 1);
        Assert.assertNull(foundPerson);
View Full Code Here


    public void testQuery() {
        AddressCouchOTO address = new AddressCouchOTO();
        address.setAddressId("a");
        address.setStreet("sector 11");

        PersonCouchOTO person = new PersonCouchOTO();
        person.setPersonId("1");
        person.setPersonName("Kuldeep");
        person.setAddress(address);

        em.persist(person);

        AddressCouchOTO address1 = new AddressCouchOTO();
        address1.setAddressId("b");
        address1.setStreet("sector 12");

        PersonCouchOTO person1 = new PersonCouchOTO();
        person1.setPersonId("2");
        person1.setPersonName("KK");
        person1.setAddress(address1);

        em.persist(person1);

        em = getNewEM();
View Full Code Here

TOP

Related Classes of com.impetus.client.couchdb.entities.PersonCouchOTO

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.