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.ITUtil;
19 import edu.samplu.common.WebDriverLegacyITBase;
20 import org.junit.Test;
21
22 import static org.junit.Assert.assertEquals;
23
24
25
26
27
28
29 public class IdentityRoleWDIT extends WebDriverLegacyITBase{
30
31 public static final String TEST_URL = ITUtil.PORTAL + "?channelTitle=Role&channelUrl=" + ITUtil.getBaseUrlString() +
32 "/kr/lookup.do?methodToCall=start&businessObjectClassName=org.kuali.rice.kim.impl.role.RoleBo&docFormKey=88888888&returnLocation=" +
33 ITUtil.PORTAL_URL + "&hideReturnLink=true";
34
35 @Override
36 public String getTestUrl() {
37 return TEST_URL;
38 }
39
40 @Test
41
42
43
44 public void testCreateNewSearchReturnValueCancelConfirmation() throws Exception {
45 super.testCreateNewSearchReturnValueCancelConfirmation();
46 }
47
48 @Test
49
50
51
52 public void testSearchEditCancel() throws InterruptedException {
53 super.testSearchEditCancel();
54 }
55 }