Examples of DomainGroupEntity


Examples of org.eurekastreams.server.domain.DomainGroupEntity

     * Test group lookup when the searched-for group does not exist in the database.
     */
    @Test
    public void testFindByShortNameWithNoSuchRecord()
    {
        DomainGroupEntity actual = jpaGroupMapper.findByShortName("nosuchgroup");

        assertNull(actual);
    }
View Full Code Here

Examples of org.eurekastreams.server.domain.DomainGroupEntity

     * Test group lookup.
     */
    @Test
    public void testFindByShortName()
    {
        DomainGroupEntity actual = jpaGroupMapper.findByShortName("group1");

        assertNotNull(actual);
        assertEquals("E Group 1 Name", actual.getName());
    }
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.