![JAR search and dependency download from the Maven repository](/logo.png)
org.opengis.cite.gpkg12.extensions.relatedtables.TilesTests Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ets-gpkg12 Show documentation
Show all versions of ets-gpkg12 Show documentation
This test suite checks GeoPackage 1.2 files for standards conformance.
The newest version!
package org.opengis.cite.gpkg12.extensions.relatedtables;
import java.sql.SQLException;
import org.testng.ITestContext;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;
/**
* Defines test methods that apply to the "tiles" requirements class of the Related Tables
* Extension.
*
*
* Sources
*
*
* - GeoPackage Related Tables Extension, Tiles Requirements Class (OGC
* 18-000)
*
*
* @author Jeff Yutzler
*/
public class TilesTests extends RTEBase {
/**
* A user-defined related data table or view SHALL be a user-defined related tiles
* table or view if the row in gpkgext_relations with a corresponding
* related_table_name has a relation_name of "tiles".
* @param testContext a test context
* @throws SQLException On any SQL query error or test failure
*
* @see OGC 18-000 Requirement 20
*/
@BeforeClass
public void activeExtension(ITestContext testContext) throws SQLException {
super.activeExtension(testContext);
testRequirementsClassActive("tiles", "Tiles");
}
/**
* A user-defined related features table or view SHALL be a GPKG tile pyramid table
* type.
* @throws SQLException On any SQL query error or test failure
*
* @see OGC 18-000 Requirement 17
*/
@Test(description = "See OGC 18-000: Requirement 17")
public void tilesTableDefinition() throws SQLException {
testRelatedType("tiles", "tiles");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy