/** * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * * @author Kevin Smith, Boundless, 2017 */ package org.geowebcache.storage.blobstore.memory; import org.geowebcache.storage.AbstractBlobStoreTest; import org.geowebcache.storage.blobstore.memory.NullBlobStore; import org.junit.Before; import org.junit.Ignore; import org.junit.Test; public class NullBlobStoreComformanceTest extends AbstractBlobStoreTest<NullBlobStore> { @Override public void createTestUnit() throws Exception { this.store = new NullBlobStore(); } @Before public void setEvents() throws Exception { this.events = false; } @Override @Ignore @Test public void testStoreTile() throws Exception { super.testStoreTile(); } @Override @Ignore @Test public void testStoreTilesInMultipleLayers() throws Exception { super.testStoreTilesInMultipleLayers(); } @Override @Ignore @Test public void testUpdateTile() throws Exception { super.testUpdateTile(); } @Override @Ignore @Test public void testGridsets() throws Exception { super.testGridsets(); } @Override @Ignore @Test public void testDeleteGridsetDoesntDeleteOthers() throws Exception { super.testDeleteGridset(); } @Override @Ignore @Test public void testDeleteByParametersId() throws Exception { super.testDeleteByParametersId(); } @Override @Ignore @Test public void testParameters() throws Exception { super.testParameters(); } @Override @Ignore @Test public void testParameterIDList() throws Exception { super.testParameterIDList(); } @Override @Ignore @Test public void testParameterList() throws Exception { super.testParameterList(); } @Override @Ignore @Test public void testDeleteByParametersIdDoesNotDeleteOthers() throws Exception { super.testDeleteByParametersIdDoesNotDeleteOthers(); } @Override @Ignore @Test public void testPurgeOrphans() throws Exception { super.testPurgeOrphans(); } @Override @Ignore @Test public void testPurgeOrphansWithDefault() throws Exception { super.testPurgeOrphansWithDefault(); } }