1 /*
2 * Copyright 2005-2013 The Kuali Foundation
3 *
4 * Licensed under the Educational Community License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.opensource.org/licenses/ecl2.php
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 package edu.samplu.krad.configview;
18
19 import edu.samplu.common.WebDriverLegacyITBase;
20 import org.junit.Test;
21
22 /**
23 * Selenium test that tests collections
24 *
25 * @author Kuali Rice Team (rice.collab@kuali.org)
26 */
27 public class CollectionsWDIT extends WebDriverLegacyITBase {
28
29 @Override
30 public String getTestUrl() {
31 return "/kr-krad/uicomponents?viewId=ConfigurationTestView-Collections&methodToCall=start";
32 }
33
34 /**
35 * Test adding a column of values to the Default Tests Table Layout
36 */
37 @Test
38 public void testDefaultTestsTableLayout() throws Exception{
39 super.testDefaultTestsTableLayout();
40 }
41
42 /**
43 * Test adding a column of values to the Add Blank Line Tests Table Layout
44 */
45 @Test
46 public void testAddBlankLine() throws Exception {
47 super.testAddBlankLine();
48 passed();
49 }
50
51
52 /**
53 * Test action column placement in table layout collections
54 */
55 @Test
56 public void testActionColumnPlacement() throws Exception {
57 super.testActionColumnPlacement();
58 passed();
59 }
60
61
62 @Test
63 public void testAddViaLightbox() throws Exception {
64 super.testAddViaLightbox();
65 passed();
66 }
67
68 @Test
69 public void testColumnSequence() throws Exception {
70 super.testColumnSequence();
71 passed();
72 }
73
74 @Test
75 public void testSequencerow() throws Exception {
76 super.testSequencerow();
77 passed();
78 }
79 }