Open Chinese Convert 1.1.8
A project for conversion between Traditional and Simplified Chinese
Loading...
Searching...
No Matches
ConfigTestBase.hpp
1/*
2 * Open Chinese Convert
3 *
4 * Copyright 2015 Carbo Kuo <byvoid@byvoid.com>
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18
19#pragma once
20
21#ifdef BAZEL
22#include "tools/cpp/runfiles/runfiles.h"
23#endif
24
25#include "TestUtils.hpp"
26
27namespace opencc {
28
29#ifdef CMAKE_SOURCE_DIR
30class ConfigTestBase : public ::testing::Test {
31protected:
32 ConfigTestBase()
33 : CONFIG_TEST_JSON_PATH(CMAKE_SOURCE_DIR
34 "/test/config_test/config_test.json"),
35 CONFIG_TEST_DIR_PATH(CMAKE_SOURCE_DIR "/test/config_test") {}
36
37 const std::string CONFIG_TEST_JSON_PATH;
38 const std::string CONFIG_TEST_DIR_PATH;
39};
40#endif
41
42#ifdef BAZEL
43using bazel::tools::cpp::runfiles::Runfiles;
44class ConfigTestBase : public ::testing::Test {
45protected:
46 ConfigTestBase()
47 : runfiles_(Runfiles::CreateForTest()),
48 CONFIG_TEST_JSON_PATH(
49 runfiles_->Rlocation("_main/test/config_test/config_test.json")),
50 CONFIG_TEST_DIR_PATH(runfiles_->Rlocation("_main/test/config_test")) {}
51
52 const std::unique_ptr<Runfiles> runfiles_;
53 const std::string CONFIG_TEST_JSON_PATH;
54 const std::string CONFIG_TEST_DIR_PATH;
55};
56#endif
57
58} // namespace opencc