Package org.socialmusicdiscovery.server.business.model.core

Examples of org.socialmusicdiscovery.server.business.model.core.Person


        em.clear();
        persons = personRepository.findAllWithRelations(null,null);
        assert persons.size()==15;

        em.clear();
        Person person = personRepository.findById(persons.iterator().next().getId());
        assert person != null;

        persons = personRepository.findByName("Whitney Elisabeth Houston");
        assert persons.size()==1;
        assert persons.iterator().next().getName().equals("Whitney Elisabeth Houston");
View Full Code Here

TOP

Related Classes of org.socialmusicdiscovery.server.business.model.core.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.