1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package edu.sampleu.admin;
17
18 import org.junit.Test;
19
20
21
22
23 public class ConfigComponentActionListBkMrkAft extends ConfigComponentActionListAftBase {
24
25 @Override
26 public String getBookmarkUrl() {
27 return BOOKMARK_URL;
28 }
29
30 @Test
31 public void testActionListAcknowledgeGroupBookmark() throws Exception {
32 testActionListAcknowledgeGroup();
33 }
34
35 @Test
36 public void testActionListAcknowledgePersonBookmark() throws Exception {
37 testActionListAcknowledgePerson();
38 }
39
40 @Test
41 public void testActionListApproveGroupBookmark() throws Exception {
42 testActionListApproveGroup();
43 }
44
45 @Test
46 public void testActionListApprovePersonBookmark() throws Exception {
47 testActionListApprovePerson();
48 }
49
50 @Test
51 public void testActionListCompleteGroupBookmark() throws Exception {
52 testActionListCompleteGroup();
53 }
54
55 @Test
56 public void testActionListCompletePersonBookmark() throws Exception {
57 testActionListCompletePerson();
58 }
59
60 @Test
61 public void testActionListDisapproveGroupBookmark() throws Exception {
62 testActionListDisapproveGroup();
63 }
64
65 @Test
66 public void testActionListDisapprovePersonBookmark() throws Exception {
67 testActionListDisapprovePerson();
68 }
69
70 @Test
71 public void testActionListFyiGroupBookmark() throws Exception {
72 testActionListFyiGroup();
73 }
74
75 @Test
76 public void testActionListFyiPersonBookmark() throws Exception {
77 testActionListFyiPerson();
78 }
79 }