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 BreadcrumbKradSTJUnitNavGen extends BreadcrumbKradSTJUnitBase {
24
25 @Test
26 public void testBreadcrumbNav() throws Exception {
27 testBreadcrumbNav(this);
28 }
29
30 @Test
31 public void testBreadcrumbShuffledNav() throws Exception {
32 testBreadcrumbShuffledNav(this);
33 }
34
35 @Test
36 public void testBreadcrumbNavigateToNav() throws Exception {
37 testBreadcrumbNavigateToNav(this);
38 }
39
40 @Test
41 public void testBreadcrumbNavigateToShuffledNav() throws Exception {
42 testBreadcrumbNavigateToShuffledNav(this);
43 }
44 }