/**
* This file is part of JSurveyLib.
*
* JSurveyLib is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* JSurveyLib is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with JSurveyLib. If not, see <http://www.gnu.org/licenses/>.
**/
package org.jsurveylib.model;
import static org.junit.Assert.*;
import org.junit.Test;
import org.jsurveylib.Survey;
import org.jsurveylib.io.XMLSurveyReader;
import java.io.File;
/**
* <u><b><font color="red">FOR INTERNAL USE ONLY.</font></b></u>
* <p/>
* Copyright (c)2007, Daniel Kaplan
*
* @author Daniel Kaplan
* @since 8.01.29
*/
public class MenuTest {
@Test
public void testDefault() throws Exception {
Survey s = new Survey(new XMLSurveyReader(new File("src\\test\\org\\jsurveylib\\model\\menufiles\\testdefault.xml")));
Menu m = s.getMenu();
assertFalse(m.exists());
assertFalse(m.hasFirstPage());
assertFalse(m.hasLastPage());
assertFalse(m.hasNextPage());
assertFalse(m.hasOpen());
assertFalse(m.hasPreviousPage());
assertFalse(m.hasSave());
assertFalse(m.hasSaveAs());
}
@Test
public void useAll() throws Exception {
Survey s = new Survey(new XMLSurveyReader(new File("src\\test\\org\\jsurveylib\\model\\menufiles\\useall.xml")));
Menu m = s.getMenu();
assertTrue(m.exists());
assertTrue(m.hasFirstPage());
assertTrue(m.hasLastPage());
assertTrue(m.hasNextPage());
assertTrue(m.hasOpen());
assertTrue(m.hasPreviousPage());
assertTrue(m.hasSave());
assertTrue(m.hasSaveAs());
}
@Test
public void justMenu() throws Exception {
Survey s = new Survey(new XMLSurveyReader(new File("src\\test\\org\\jsurveylib\\model\\menufiles\\justmenu.xml")));
Menu m = s.getMenu();
assertTrue(m.exists());
assertFalse(m.hasNextPage());
assertFalse(m.hasOpen());
assertFalse(m.hasPreviousPage());
assertFalse(m.hasSave());
assertFalse(m.hasSaveAs());
assertFalse(m.hasFirstPage());
assertFalse(m.hasLastPage());
}
}