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