001 /*
002 * Copyright 2005-2013 The Kuali Foundation
003 *
004 * Licensed under the Educational Community License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.opensource.org/licenses/ecl2.php
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016
017 package edu.samplu.krad.configview;
018
019 import edu.samplu.common.WebDriverLegacyITBase;
020 import org.junit.Test;
021
022 /**
023 * Selenium test that tests collections
024 *
025 * @author Kuali Rice Team (rice.collab@kuali.org)
026 */
027 public class CollectionsWDIT extends WebDriverLegacyITBase {
028
029 @Override
030 public String getTestUrl() {
031 return "/kr-krad/uicomponents?viewId=ConfigurationTestView-Collections&methodToCall=start";
032 }
033
034 /**
035 * Test adding a column of values to the Default Tests Table Layout
036 */
037 @Test
038 public void testDefaultTestsTableLayout() throws Exception{
039 super.testDefaultTestsTableLayout();
040 }
041
042 /**
043 * Test adding a column of values to the Add Blank Line Tests Table Layout
044 */
045 @Test
046 public void testAddBlankLine() throws Exception {
047 super.testAddBlankLine();
048 passed();
049 }
050
051
052 /**
053 * Test action column placement in table layout collections
054 */
055 @Test
056 public void testActionColumnPlacement() throws Exception {
057 super.testActionColumnPlacement();
058 passed();
059 }
060
061
062 @Test
063 public void testAddViaLightbox() throws Exception {
064 super.testAddViaLightbox();
065 passed();
066 }
067
068 @Test
069 public void testColumnSequence() throws Exception {
070 super.testColumnSequence();
071 passed();
072 }
073
074 @Test
075 public void testSequencerow() throws Exception {
076 super.testSequencerow();
077 passed();
078 }
079 }