1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package edu.samplu.krad.demo.travel.account.inquiry;
17
18 import org.junit.Test;
19
20
21
22
23 public class DemoTravelAccountInquirySTJUnitBkMrkGen extends DemoTravelAccountInquirySTJUnitBase {
24
25 @Override
26 public String getTestUrl() {
27 return BOOKMARK_URL;
28 }
29
30 @Test
31 public void testInquiryCollapseExpandBookmark() throws Exception {
32 testInquiryCollapseExpandBookmark(this);
33 }
34
35 @Test
36 public void testInquiryLightBoxBookmark() throws Exception {
37 testInquiryLightBoxBookmark(this);
38 }
39
40 @Test
41 public void testInquiryBackButtonBookmark() throws Exception {
42 testInquiryBackButtonBookmark(this);
43 }
44 }