1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package edu.samplu.travel.test;
17
18 import edu.samplu.common.ITUtil;
19 import edu.samplu.common.WebDriverLegacyITBase;
20
21 import org.junit.Test;
22
23 import static org.junit.Assert.assertEquals;
24
25
26
27
28
29
30
31 public class FiscalOfficerInfoMaintenanceNewWDIT extends WebDriverLegacyITBase {
32 public static final String TEST_URL = ITUtil.PORTAL
33 + "?channelTitle=FiscalOfficerInfo%20Maintenance%20(New)&channelUrl="
34 + ITUtil.getBaseUrlString()
35 + "/kr-krad/maintenance?methodToCall=start&dataObjectClassName=edu.sampleu.travel.dto.FiscalOfficerInfo&returnLocation="
36 + ITUtil.PORTAL_URL + "&hideReturnLink=true";
37
38 @Override
39 public String getTestUrl() {
40 return TEST_URL;
41 }
42
43 @Test
44 public void testFiscalOfficerInfoMaintenanceNew() throws Exception {
45 super.testFiscalOfficerInfoMaintenanceNew();
46 }
47 }