Package com.inspiresoftware.lib.dto.geda.examples.blog.dto

Examples of com.inspiresoftware.lib.dto.geda.examples.blog.dto.BaseUserDTO


        final List<BaseUserDTO> list = srv.list();
        assertNotNull(list);
        assertEquals(list.size(), 2);

        // imitate user found Bob's account in list
        final BaseUserDTO bob = selectBob(list);
        assertNotNull(bob);

        // user clicks the Bob's account entry
        final UserDTO bobFull = srv.findUser(bob.getUserId());
        assertNotNull(bobFull);

        assertNotNull(bobFull.getEntries());
        assertEquals(bobFull.getEntries().size(), 1);
View Full Code Here

TOP

Related Classes of com.inspiresoftware.lib.dto.geda.examples.blog.dto.BaseUserDTO

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.