forked from OSGeo/gdal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgdal_unit_test.h
47 lines (35 loc) · 1.07 KB
/
gdal_unit_test.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
///////////////////////////////////////////////////////////////////////////////
//
// Project: C++ Test Suite for GDAL/OGR
// Purpose: Common definitions used in C++ Test Suite for GDAL
// Author: Mateusz Loskot <[email protected]>
//
///////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2006, Mateusz Loskot <[email protected]>
/*
* SPDX-License-Identifier: MIT
****************************************************************************/
#ifndef GDAL_COMMON_H_INCLUDED
#define GDAL_COMMON_H_INCLUDED
#include "cpl_port.h"
#include "ogr_api.h"
#include <string>
#include "gtest_include.h"
#if defined(WIN32)
#define SEP "\\"
#else
#define SEP "/"
#endif
namespace tut
{
::testing::AssertionResult
CheckEqualGeometries(OGRGeometryH lhs, OGRGeometryH rhs, double tolerance);
namespace common
{
// Data directory path used by GDAL C++ Unit Tests subset
extern std::string const data_basedir;
// Temp directory path
extern std::string const tmp_basedir;
} // namespace common
} // namespace tut
#endif // GDAL_COMMON_H_INCLUDED