001 /* 002 * Copyright 2005-2013 The Kuali Foundation 003 * 004 * Licensed under the Educational Community License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.opensource.org/licenses/ecl1.php 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016 package edu.samplu.mainmenu.test; 017 018 import org.junit.Ignore; 019 import org.junit.Test; 020 021 import edu.samplu.common.ITUtil; 022 import edu.samplu.common.WebDriverLegacyITBase; 023 024 /** 025 * @author Kuali Rice Team (rice.collab@kuali.org) 026 */ 027 public class PeopleFlowCreateNewWDIT extends WebDriverLegacyITBase { 028 029 /** 030 * ITUtil.PORTAL + "?channelTitle=People%20Flow&channelUrl=" 031 + ITUtil.getBaseUrlString() + ITUtil.KRAD_LOOKUP_METHOD 032 + "org.kuali.rice.kew.impl.peopleflow.PeopleFlowBo" 033 + "&returnLocation=" + ITUtil.PORTAL_URL + ITUtil.SHOW_MAINTENANCE_LINKS 034 */ 035 public static final String TEST_URL = ITUtil.PORTAL + "?channelTitle=People%20Flow&channelUrl=" 036 + ITUtil.getBaseUrlString() + ITUtil.KRAD_LOOKUP_METHOD 037 + "org.kuali.rice.kew.impl.peopleflow.PeopleFlowBo" 038 + "&returnLocation=" + ITUtil.PORTAL_URL + ITUtil.SHOW_MAINTENANCE_LINKS; 039 040 @Override 041 public String getTestUrl() { 042 return TEST_URL; 043 } 044 045 @Test 046 public void testPeopleFlow() throws Exception { 047 super.testPeopleFlow(); 048 passed(); 049 } 050 051 /** 052 * This overridden method ... 053 * 054 * @see edu.samplu.common.MainMenuLookupITBase#lookupAssertions() 055 */ 056 057 public void lookupAssertions() { 058 // nothing 059 } 060 061 /** 062 * This overridden method ... 063 * 064 * @see edu.samplu.common.MenuITBase#getLinkLocator() 065 */ 066 protected String getLinkLocator() { 067 return "People Flow"; 068 } 069 070 @Ignore // No Need to 071 @Test 072 public void testLookUp() throws Exception {} 073 }