All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opengis.cite.gpkg12.extensions.relatedtables.TilesTests Maven / Gradle / Ivy

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 *

* * * @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