1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package edu.samplu.krad.labs.kitchensink.compview;
17
18 import org.junit.Test;
19
20
21
22
23 public class BreadcrumbKradSTJUnitBkMrkGen extends BreadcrumbKradSTJUnitBase {
24
25
26
27
28
29 @Override
30 public String getTestUrl() {
31 return BOOKMARK_URL;
32 }
33
34 @Test
35 public void testBreadcrumbBookmark() throws Exception {
36 testBreadcrumbBookmark(this);
37 }
38
39 @Test
40 public void testBreadcrumbShuffledBookmark() throws Exception {
41 testBreadcrumbShuffledBookmark(this);
42 }
43
44 @Test
45 public void testBreadcrumbNavigateToBookmark() throws Exception {
46 testBreadcrumbNavigateToBookmark(this);
47 }
48
49 @Test
50 public void testBreadcrumbNavigateToShuffledBookmark() throws Exception {
51 testBreadcrumbNavigateToShuffledBookmark(this);
52 }
53 }