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