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 ConfigComponentCreateNewBkMrkAft extends ConfigComponentCreateNewAftBase {
24
25 @Override
26 public String getBookmarkUrl() {
27 return BOOKMARK_URL;
28 }
29
30 @Test
31 public void testConfigComponentCreateNewBookmark() throws Exception {
32 super.testConfigComponentCreateNew();
33 }
34
35 @Test
36 public void testConfigComponentCreateNewSaveBookmark() throws Exception {
37 super.testConfigComponentCreateNewSave();
38 }
39
40 @Test
41 public void testConfigComponentCreateNewDuplicateEntryBookmark() throws Exception {
42 super.testConfigComponentCreateNewDuplicateEntry();
43 }
44 }