1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package edu.samplu.admin.test;
17
18 import edu.samplu.common.Failable;
19 import edu.samplu.common.ITUtil;
20
21
22
23
24 public abstract class AddingNameSpacesAbstractSmokeTestBase extends AdminTmplMthdSTNavBase{
25
26
27
28
29 public static final String BOOKMARK_URL = ITUtil.PORTAL+"?channelTitle=Namespace&channelUrl="+ITUtil.getBaseUrlString()+"/kr/lookup.do?methodToCall=start&businessObjectClassName=org.kuali.rice.coreservice.impl.namespace.NamespaceBo&docFormKey=88888888&returnLocation="+ITUtil.PORTAL_URL+"&hideReturnLink=true";
30
31
32
33
34
35
36 @Override
37 protected String getLinkLocator() {
38 return "Namespace";
39 }
40
41 public void testAddingNamespaceBookmark(Failable failable) throws Exception {
42 testAddingNamespace(this);
43 passed();
44 }
45
46 public void testAddingNamespaceNav(Failable failable) throws Exception {
47 testAddingNamespace(this);
48 passed();
49 }
50
51 public void testSearchEditBackNav(Failable failable) throws Exception {
52 testSearchEditBack(this);
53 passed();
54 }
55
56 public void testSearchSearchBackNav(Failable failable) throws Exception {
57 testSearchSearchBack(this, "code", "KR-SYS");
58 passed();
59 }
60 }