1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package edu.samplu.mainmenu.test;
17
18 import edu.samplu.common.ITUtil;
19 import edu.samplu.common.WebDriverLegacyITBase;
20
21 import org.junit.Assert;
22 import org.junit.Test;
23
24 import static org.junit.Assert.assertEquals;
25
26
27
28
29
30
31 public class WorkFlowRouteRulesWDIT extends WebDriverLegacyITBase {
32 public static final String TEST_URL = ITUtil.PORTAL + "?channelTitle=Routing%20Rules&channelUrl=" + ITUtil.getBaseUrlString() +
33 "/kr/lookup.do?businessObjectClassName=org.kuali.rice.kew.rule.RuleBaseValues&docFormKey=88888888&returnLocation=" +
34 ITUtil.PORTAL_URL + "&hideReturnLink=true&showMaintenanceLinks=true";
35
36 @Override
37 public void fail(String message) {
38 Assert.fail(message);
39 }
40
41
42
43
44
45
46 @Override
47 public String getTestUrl() {
48
49 return TEST_URL;
50 }
51 @Test
52
53
54
55 public void testWorkFlowRouteRulesCreateNew() throws Exception {
56 super.testWorkFlowRouteRulesCreateNew();
57 }
58
59 @Test
60
61
62
63 public void testWorkFlowRouteRulesEditRouteRules() throws Exception {
64 super.testWorkFlowRouteRulesEditRouteRules();
65 }
66
67
68
69 }