001    /**
002     * Copyright 2005-2011 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    package org.kuali.rice.test;
017    
018    import org.junit.Test;
019    import org.kuali.rice.test.data.PerSuiteUnitTestData;
020    import org.kuali.rice.test.data.PerTestUnitTestData;
021    import org.kuali.rice.test.data.UnitTestData;
022    
023    /**
024     * This class is used to test the annotation data entry provided by {@link UnitTestData}, {@link PerTestUnitTestData}, and {@link PerSuiteUnitTestData}
025     * 
026     * @author Kuali Rice Team (rice.collab@kuali.org)
027     *
028     */
029    @PerSuiteUnitTestData({
030            @UnitTestData("insert into " + AnnotationTestParent.TEST_TABLE_NAME + " (COL) values ('3')"),
031            @UnitTestData(filename = "classpath:org/kuali/rice/test/DataLoaderAnnotationTestData.sql")
032    })
033    public class DataLoaderAnnotationTest extends AnnotationTestParent {
034        
035        public DataLoaderAnnotationTest() {}
036    
037        @Test public void testParentAndSubClassImplementation() throws Exception {
038            // check sql statement from this class
039            verifyExistence("3");
040            
041            // check sql file from this class
042            verifyExistence("4");
043            
044            // check sql statement from parent class
045            verifyExistence("1");
046            
047            // check sql file from parent class
048            verifyExistence("2");
049        }
050        
051    }