eckit::geo

This commit is contained in:
Pedro Maciel 2024-10-10 15:09:48 +01:00
parent b9f3797280
commit f68e03fa11
4 changed files with 84 additions and 0 deletions

View File

@ -1,5 +1,8 @@
if(HAVE_GEOGRAPY)
foreach( _test
grid_FESOM
grid_ICON
grid_ORCA
grid_healpix
grid_lambert
grid_polar_stereographic )

27
tests/unit/grid_FESOM.cc Normal file
View File

@ -0,0 +1,27 @@
/*
* (C) Copyright 2005- ECMWF.
*
* This software is licensed under the terms of the Apache Licence Version 2.0
* which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
*
* In applying this licence, ECMWF does not waive the privileges and immunities granted to it by
* virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction.
*/
#include "eckit/geo/Grid.h"
#include "eckit/testing/Test.h"
#include "eccodes/geo/GribSpec.h"
CASE("") {
SECTION("") {
EXPECT(true);
}
}
int main(int argc, char* argv[] ) {
return eckit::testing::run_tests(argc, argv);
}

27
tests/unit/grid_ICON.cc Normal file
View File

@ -0,0 +1,27 @@
/*
* (C) Copyright 2005- ECMWF.
*
* This software is licensed under the terms of the Apache Licence Version 2.0
* which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
*
* In applying this licence, ECMWF does not waive the privileges and immunities granted to it by
* virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction.
*/
#include "eckit/geo/Grid.h"
#include "eckit/testing/Test.h"
#include "eccodes/geo/GribSpec.h"
CASE("") {
SECTION("") {
EXPECT(true);
}
}
int main(int argc, char* argv[] ) {
return eckit::testing::run_tests(argc, argv);
}

27
tests/unit/grid_ORCA.cc Normal file
View File

@ -0,0 +1,27 @@
/*
* (C) Copyright 2005- ECMWF.
*
* This software is licensed under the terms of the Apache Licence Version 2.0
* which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
*
* In applying this licence, ECMWF does not waive the privileges and immunities granted to it by
* virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction.
*/
#include "eckit/geo/Grid.h"
#include "eckit/testing/Test.h"
#include "eccodes/geo/GribSpec.h"
CASE("") {
SECTION("") {
EXPECT(true);
}
}
int main(int argc, char* argv[] ) {
return eckit::testing::run_tests(argc, argv);
}