/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * * $Rev$ $Date$ */ package test.sdo21.tests; // static imports simply allow you to call assertTrue rather than // Assert.assertTrue import static org.junit.Assert.assertEquals; import org.junit.After; import org.junit.Before; import org.junit.BeforeClass; import org.junit.Ignore; import org.junit.Test; import test.sdo21.framework.CTSTestCase; /** * Example test class to be used as a template SDO test cases. *
* The test case can be run using Junit within eclipse, from normal command line * junit, or within a WebSphere build environment by adding an target such as * sampleTestTarget that is contained within the build.xml file of the * WAS.soa.sdo.cts component.
*
* Once a test case has been completed and reviewed it can be added into the * appropiate CTS Suite.
*
* This test class should make every effort to only use methods that are defined * within the current SDO Specification. If utility methods are required they * should be added to {@link test.sdo21.framework.TestHelper}
*
* Please Document the overall intention of the test case and provide detailed * javadoc for each test method. Please create modular test methods rather than * single large test methods
*
* Resources: *