1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package edu.samplu.mainmenu.test;
17
18 import org.junit.Test;
19
20 import edu.samplu.common.ITUtil;
21 import edu.samplu.common.WebDriverLegacyITBase;
22
23
24
25
26
27
28 public class CreateNewAgendaWDIT extends WebDriverLegacyITBase {
29 public static final String TEST_URL = ITUtil.PORTAL + "?channelTitle=Create%20New%20Agenda&channelUrl=" + ITUtil.getBaseUrlString() +
30 "/kr-krad/krmsAgendaEditor?methodToCall=start&dataObjectClassName=org.kuali.rice.krms.impl.ui.AgendaEditor&returnLocation=" +
31 ITUtil.PORTAL_URL + "&hideReturnLink=true";
32
33 @Override
34 public String getTestUrl() {
35 return TEST_URL;
36 }
37
38 @Test
39 public void testCreateNewAgenda() throws Exception {
40 super.testCreateNewAgenda();
41 }
42
43 }