1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package edu.samplu.admin.test;
17
18 import edu.samplu.common.AdminMenuBlanketAppLegacyITBase;
19 import edu.samplu.common.ITUtil;
20 import edu.samplu.common.WebDriverLegacyITBase;
21
22 import org.apache.commons.lang.RandomStringUtils;
23 import org.junit.Test;
24
25
26
27
28
29
30 public class LocationStateBlanketAppWDIT extends WebDriverLegacyITBase {
31 public static final String TEST_URL = ITUtil.PORTAL + "?channelTitle=State&channelUrl=" + ITUtil.getBaseUrlString() +
32 "/kr/lookup.do?methodToCall=start&businessObjectClassName=org.kuali.rice.location.impl.state.StateBo&docFormKey=88888888&returnLocation=" +
33 ITUtil.PORTAL_URL + "&hideReturnLink=true";
34
35 @Override
36 public String getTestUrl() {
37 return TEST_URL;
38 }
39 @Test
40 public void testLocationStateBlanketApprove() throws Exception {
41 super.testLocationStateBlanketApprove();
42 }
43 }
44