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 ConfigParameterTypeWDIT extends WebDriverLegacyITBase {
29 public static final String TEST_URL=ITUtil.PORTAL+"?channelTitle=Parameter%20Type&channelUrl="+ITUtil.getBaseUrlString()+"/kr/lookup.do?methodToCall=start&businessObjectClassName=org.kuali.rice.coreservice.impl.parameter.ParameterTypeBo&docFormKey=88888888&returnLocation="+ITUtil.PORTAL_URL+"&hideReturnLink=true";
30
31
32
33
34
35 @Override
36 public String getTestUrl() {
37
38 return TEST_URL;
39 }
40
41 @Test
42 public void testEditCancel() throws Exception {
43 super.testSearchEditCancel();
44 }
45
46 @Test
47 public void testCreateNewCancel() throws Exception {
48 super.testCreateNewCancel();
49 }
50
51 }