001/*
002 *    GeoAPI - Java interfaces for OGC/ISO standards
003 *    Copyright © 2009-2023 Open Geospatial Consortium, Inc.
004 *    http://www.geoapi.org
005 *
006 *    Licensed under the Apache License, Version 2.0 (the "License");
007 *    you may not use this file except in compliance with the License.
008 *    You may obtain a copy of the License at
009 *
010 *        http://www.apache.org/licenses/LICENSE-2.0
011 *
012 *    Unless required by applicable law or agreed to in writing, software
013 *    distributed under the License is distributed on an "AS IS" BASIS,
014 *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
015 *    See the License for the specific language governing permissions and
016 *    limitations under the License.
017 */
018package org.opengis.test.referencing;
019
020import org.opengis.referencing.cs.*;
021import org.opengis.referencing.crs.*;
022import org.opengis.referencing.datum.*;
023
024
025/**
026 * Tests objects that combine all referencing sub-packages, especially {@code crs}, {@code cs} and
027 * {@code datum}. The instances are created using the various factories given at construction time.
028 *
029 * <h2>Usage example:</h2>
030 * in order to specify their factories and run the tests in a JUnit framework, implementers can
031 * define a subclass in their own test suite as in the example below:
032 *
033 * {@snippet lang="java" :
034 * import org.opengis.test.referencing.ReferencingTest;
035 *
036 * public class MyTest extends ReferencingTest {
037 *     public MyTest() {
038 *         super(new MyCRSFactory(), new MyCSFactory(), new MyDatumFactory());
039 *     }
040 * }}
041 *
042 * @author  Cédric Briançon (Geomatys)
043 * @author  Martin Desruisseaux (Geomatys)
044 * @version 3.1
045 * @since   2.3
046 *
047 * @deprecated Renamed as {@link ObjectFactoryTest}.
048 */
049@Deprecated
050@SuppressWarnings("strictfp")   // Because we still target Java 11.
051public strictfp class ReferencingTest extends ObjectFactoryTest {
052    /**
053     * Creates a new test using the given factories. If a given factory is {@code null},
054     * then the tests which depend on it will be skipped.
055     *
056     * @param crsFactory    factory for creating {@link CoordinateReferenceSystem} instances.
057     * @param csFactory     factory for creating {@link CoordinateSystem} instances.
058     * @param datumFactory  factory for creating {@link Datum} instances.
059     */
060    public ReferencingTest(final CRSFactory crsFactory, final CSFactory csFactory, final DatumFactory datumFactory) {
061        super(datumFactory, csFactory, crsFactory, null);
062    }
063}