1 /*
2 * Copyright 2005-2013 The Kuali Foundation
3 *
4 * Licensed under the Educational Community License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.opensource.org/licenses/ecl1.php
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 package edu.samplu.mainmenu.test;
17
18 import org.junit.Ignore;
19 import org.junit.Test;
20
21 import edu.samplu.common.ITUtil;
22 import edu.samplu.common.WebDriverLegacyITBase;
23
24 /**
25 * @author Kuali Rice Team (rice.collab@kuali.org)
26 */
27 public class PeopleFlowCreateNewWDIT extends WebDriverLegacyITBase {
28
29 /**
30 * ITUtil.PORTAL + "?channelTitle=People%20Flow&channelUrl="
31 + ITUtil.getBaseUrlString() + ITUtil.KRAD_LOOKUP_METHOD
32 + "org.kuali.rice.kew.impl.peopleflow.PeopleFlowBo"
33 + "&returnLocation=" + ITUtil.PORTAL_URL + ITUtil.SHOW_MAINTENANCE_LINKS
34 */
35 public static final String TEST_URL = ITUtil.PORTAL + "?channelTitle=People%20Flow&channelUrl="
36 + ITUtil.getBaseUrlString() + ITUtil.KRAD_LOOKUP_METHOD
37 + "org.kuali.rice.kew.impl.peopleflow.PeopleFlowBo"
38 + "&returnLocation=" + ITUtil.PORTAL_URL + ITUtil.SHOW_MAINTENANCE_LINKS;
39
40 @Override
41 public String getTestUrl() {
42 return TEST_URL;
43 }
44
45 @Test
46 public void testPeopleFlow() throws Exception {
47 super.testPeopleFlow();
48 passed();
49 }
50
51 /**
52 * This overridden method ...
53 *
54 * @see edu.samplu.common.MainMenuLookupITBase#lookupAssertions()
55 */
56
57 public void lookupAssertions() {
58 // nothing
59 }
60
61 /**
62 * This overridden method ...
63 *
64 * @see edu.samplu.common.MenuITBase#getLinkLocator()
65 */
66 protected String getLinkLocator() {
67 return "People Flow";
68 }
69
70 @Ignore // No Need to
71 @Test
72 public void testLookUp() throws Exception {}
73 }