Package org.encuestame.persistence.domain.survey

Examples of org.encuestame.persistence.domain.survey.PollFolder


     * Test Get Poll Folder by User.
     */
    @Test
    public void testGetPollFolderByIdandUser(){
        assertNotNull(pollFolder);
        final PollFolder pfolder = getPollDao().getPollFolderByIdandUser(this.pollFolder.getId(), this.userAccount);
        assertEquals("Should be equals", this.pollFolder.getId(), pfolder.getId());
     }
View Full Code Here


     * Test getPollFolderById.
     */
    @Test
    public void testGetPollFolderById(){
        assertNotNull(this.pollFolder);
        final PollFolder pollFolder = getPollDao().getPollFolderById(this.pollFolder.getId());
        assertEquals("Should be equals", this.pollFolder.getId(), pollFolder.getId());
    }
View Full Code Here

TOP

Related Classes of org.encuestame.persistence.domain.survey.PollFolder

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.