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.Assert;
19 import org.junit.Test;
20
21 import edu.samplu.common.ITUtil;
22 import edu.samplu.common.WebDriverLegacyITBase;
23
24
25
26
27
28
29 public class ConfigParameterTypeWDIT extends WebDriverLegacyITBase {
30 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";
31
32 @Override
33 public void fail(String message) {
34 Assert.fail(message);
35 }
36
37
38
39
40
41
42 @Override
43 public String getTestUrl() {
44
45 return TEST_URL;
46 }
47
48 @Test
49 public void testEditCancel() throws Exception {
50 super.testSearchEditCancel();
51 }
52
53 @Test
54 public void testCreateNewCancel() throws Exception {
55 super.testCreateNewCancel();
56 }
57
58 }