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