2018-08-25 17:07:32 +08:00
|
|
|
// (C) Copyright 2017, Google Inc.
|
|
|
|
// Licensed 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.
|
2018-08-24 21:07:48 +08:00
|
|
|
|
2019-10-30 01:01:18 +08:00
|
|
|
#include <tesseract/baseapi.h>
|
2018-08-24 21:07:48 +08:00
|
|
|
|
|
|
|
// Dummy enum in the global namespace that checks for collision with awkward
|
|
|
|
// names.
|
2019-10-29 15:41:47 +08:00
|
|
|
// If this test fails to compile, clean up the includes in tesseract/baseapi.h!
|
2018-08-24 21:07:48 +08:00
|
|
|
// They are not supposed to drag in definitions of any of the tesseract
|
|
|
|
// types included in this enum!
|
2018-09-29 15:19:13 +08:00
|
|
|
enum NameTester { ABORT, OKAY, LOG, BLOB, ELIST, TBOX, TPOINT, WORD };
|
2018-08-24 21:07:48 +08:00
|
|
|
|
2020-12-23 21:57:46 +08:00
|
|
|
#include "gtest/gtest.h"
|
2018-08-25 17:07:32 +08:00
|
|
|
|
2020-12-27 17:41:48 +08:00
|
|
|
namespace tesseract {
|
2018-08-24 21:07:48 +08:00
|
|
|
|
|
|
|
// Verifies that the global namespace is clean.
|
2021-03-13 05:06:34 +08:00
|
|
|
TEST(CleanNamespaceTess, DummyTest) {
|
|
|
|
tesseract::TessBaseAPI api;
|
|
|
|
}
|
2018-08-24 21:07:48 +08:00
|
|
|
|
2021-03-13 05:06:34 +08:00
|
|
|
} // namespace tesseract
|