blob: 71e6d509b67570b447f2153938baabfb4adf8dba [file] [log] [blame]
/*
* 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.
*/
package org.apache.sis.test.suite;
import org.apache.sis.test.TestSuite;
import org.junit.BeforeClass;
import org.junit.runners.Suite;
/**
* All tests from the {@code sis-gdal} module, in rough dependency order.
*
* @author Martin Desruisseaux (Geomatys)
* @version 0.8
* @since 0.8
* @module
*/
@Suite.SuiteClasses({
org.apache.sis.storage.gdal.PJTest.class,
org.apache.sis.storage.gdal.Proj4Test.class,
org.apache.sis.storage.gdal.Proj4ParserTest.class,
org.apache.sis.storage.gdal.Proj4FactoryTest.class,
org.apache.sis.storage.gdal.TransformTest.class,
org.apache.sis.storage.gdal.IntegrationTest.class
})
public final strictfp class GDALTestSuite extends TestSuite {
/**
* Verifies the list of tests before to run the suite.
* See {@link #verifyTestList(Class, Class[])} for more information.
*/
@BeforeClass
public static void verifyTestList() {
assertNoMissingTest(GDALTestSuite.class);
verifyTestList(GDALTestSuite.class);
}
}