package com.intuit.tank.navigation; /* * #%L * JSF Support Beans * %% * Copyright (C) 2011 - 2015 Intuit Inc. * %% * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * #L% */ import org.junit.*; import com.intuit.tank.navigation.Navigation; import com.intuit.tank.navigation.SiteSection; import static org.junit.Assert.*; /** * The class <code>NavigationTest</code> contains tests for the class <code>{@link Navigation}</code>. * * @generatedBy CodePro at 12/15/14 3:53 PM */ public class NavigationTest { /** * Run the Navigation() constructor test. * * @generatedBy CodePro at 12/15/14 3:53 PM */ @Test public void testNavigation_1() throws Exception { Navigation result = new Navigation(); assertNotNull(result); } /** * Run the String getPageTitle(String) method test. * * @throws Exception * * @generatedBy CodePro at 12/15/14 3:53 PM */ @Test public void testGetPageTitle_1() throws Exception { Navigation fixture = new Navigation(); String viewId = ""; String result = fixture.getPageTitle(viewId); // An unexpected exception was thrown in user code while executing this test: // java.lang.NoClassDefFoundError: com_cenqua_clover/CoverageRecorder // at com.intuit.tank.navigation.Navigation.getPageTitle(Navigation.java:47) assertNotNull(result); } /** * Run the String getPageTitle(String) method test. * * @throws Exception * * @generatedBy CodePro at 12/15/14 3:53 PM */ @Test public void testGetPageTitle_2() throws Exception { Navigation fixture = new Navigation(); String viewId = ""; String result = fixture.getPageTitle(viewId); // An unexpected exception was thrown in user code while executing this test: // java.lang.NoClassDefFoundError: com_cenqua_clover/CoverageRecorder // at com.intuit.tank.navigation.Navigation.getPageTitle(Navigation.java:47) assertNotNull(result); } /** * Run the SiteSection getSiteSection(String) method test. * * @throws Exception * * @generatedBy CodePro at 12/15/14 3:53 PM */ @Test public void testGetSiteSection_1() throws Exception { Navigation fixture = new Navigation(); String viewId = ""; SiteSection result = fixture.getSiteSection(viewId); // An unexpected exception was thrown in user code while executing this test: // java.lang.NoClassDefFoundError: com_cenqua_clover/CoverageRecorder // at com.intuit.tank.navigation.Navigation.getSiteSection(Navigation.java:63) assertNotNull(result); } /** * Run the SiteSection getSiteSection(String) method test. * * @throws Exception * * @generatedBy CodePro at 12/15/14 3:53 PM */ @Test public void testGetSiteSection_2() throws Exception { Navigation fixture = new Navigation(); String viewId = ""; SiteSection result = fixture.getSiteSection(viewId); // An unexpected exception was thrown in user code while executing this test: // java.lang.NoClassDefFoundError: com_cenqua_clover/CoverageRecorder // at com.intuit.tank.navigation.Navigation.getSiteSection(Navigation.java:63) assertNotNull(result); } }