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