Package org.apache.rave.model

Examples of org.apache.rave.model.Person


    @Test
    @Transactional(readOnly=false)
    @Rollback(true)
    public void delete_implObject() {
        Person person = repository.get(VALID_ID);
        assertThat(person, is(notNullValue()));
        PersonImpl impl = new PersonImpl();
        impl.setUsername(person.getUsername());
        repository.delete(impl);
        person = repository.get(VALID_ID);
        assertThat(person, is(nullValue()));
    }
View Full Code Here


        assertThat(friendsUser2.size(), is(equalTo(0)));
    }

    @Test
    public void read_properties() {
        Person person = repository.get(VALID_ID);
      assertThat(person.getProperties().size(), is(1));
    }
View Full Code Here

TOP

Related Classes of org.apache.rave.model.Person

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.