blob: f2cabd7cedb4645ae80653097075cf273543b723 [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.storage.netcdf.base;
import java.net.URL;
import java.io.InputStream;
// Test dependencies
import static org.junit.jupiter.api.Assumptions.abort;
/**
* Place-holder for a GeoAPI 3.1 class. Used only for allowing the code to compile.
* For real test execution, see the development branches on GeoAPI 4.0-SNAPSHOT.
*/
@SuppressWarnings("doclint:missing")
public enum TestData {
NETCDF_2D_GEOGRAPHIC,
NETCDF_4D_PROJECTED;
public URL location() {
abort("This test requires GeoAPI 3.1.");
return null;
}
public InputStream open() {
abort("This test requires GeoAPI 3.1.");
return null;
}
public byte[] content() {
abort("This test requires GeoAPI 3.1.");
return null;
}
}