1049249ce7addafaa0bd09480cd8858cd2c54138fAndreas Gampe/*
2049249ce7addafaa0bd09480cd8858cd2c54138fAndreas Gampe * Copyright (C) 2014 The Android Open Source Project
3049249ce7addafaa0bd09480cd8858cd2c54138fAndreas Gampe *
4049249ce7addafaa0bd09480cd8858cd2c54138fAndreas Gampe * Licensed under the Apache License, Version 2.0 (the "License");
5049249ce7addafaa0bd09480cd8858cd2c54138fAndreas Gampe * you may not use this file except in compliance with the License.
6049249ce7addafaa0bd09480cd8858cd2c54138fAndreas Gampe * You may obtain a copy of the License at
7049249ce7addafaa0bd09480cd8858cd2c54138fAndreas Gampe *
8049249ce7addafaa0bd09480cd8858cd2c54138fAndreas Gampe *      http://www.apache.org/licenses/LICENSE-2.0
9049249ce7addafaa0bd09480cd8858cd2c54138fAndreas Gampe *
10049249ce7addafaa0bd09480cd8858cd2c54138fAndreas Gampe * Unless required by applicable law or agreed to in writing, software
11049249ce7addafaa0bd09480cd8858cd2c54138fAndreas Gampe * distributed under the License is distributed on an "AS IS" BASIS,
12049249ce7addafaa0bd09480cd8858cd2c54138fAndreas Gampe * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13049249ce7addafaa0bd09480cd8858cd2c54138fAndreas Gampe * See the License for the specific language governing permissions and
14049249ce7addafaa0bd09480cd8858cd2c54138fAndreas Gampe * limitations under the License.
15049249ce7addafaa0bd09480cd8858cd2c54138fAndreas Gampe */
16049249ce7addafaa0bd09480cd8858cd2c54138fAndreas Gampe
17049249ce7addafaa0bd09480cd8858cd2c54138fAndreas Gampe#ifndef NATIVE_BRIDGE_TEST_H_
18049249ce7addafaa0bd09480cd8858cd2c54138fAndreas Gampe#define NATIVE_BRIDGE_TEST_H_
19049249ce7addafaa0bd09480cd8858cd2c54138fAndreas Gampe
20049249ce7addafaa0bd09480cd8858cd2c54138fAndreas Gampe#define LOG_TAG "NativeBridge_test"
21049249ce7addafaa0bd09480cd8858cd2c54138fAndreas Gampe
22049249ce7addafaa0bd09480cd8858cd2c54138fAndreas Gampe#include <nativebridge/native_bridge.h>
23049249ce7addafaa0bd09480cd8858cd2c54138fAndreas Gampe#include <gtest/gtest.h>
24049249ce7addafaa0bd09480cd8858cd2c54138fAndreas Gampe
25f9d9e2a2d96559c3165405d572b08e260156074aCalin Juravleconstexpr const char* kNativeBridgeLibrary = "libnativebridge-dummy.so";
2659a719c466d33479265a3e9c204c8dc9a8f435f1Calin Juravleconstexpr const char* kCodeCache = "./code_cache";
27cef898fa8f4dd52911e2dce1221097cbd2fa1727jguconstexpr const char* kCodeCacheStatFail = "./code_cache/temp";
28f2804e59854c2c7e7d3d5b58f987e5ec5cdc5b66Zhenhua WANGconstexpr const char* kNativeBridgeLibrary2 = "libnativebridge2-dummy.so";
29f2804e59854c2c7e7d3d5b58f987e5ec5cdc5b66Zhenhua WANGconstexpr const char* kNativeBridgeLibrary3 = "libnativebridge3-dummy.so";
30f9d9e2a2d96559c3165405d572b08e260156074aCalin Juravle
31049249ce7addafaa0bd09480cd8858cd2c54138fAndreas Gampenamespace android {
32049249ce7addafaa0bd09480cd8858cd2c54138fAndreas Gampe
33049249ce7addafaa0bd09480cd8858cd2c54138fAndreas Gampeclass NativeBridgeTest : public testing::Test {
34049249ce7addafaa0bd09480cd8858cd2c54138fAndreas Gampe};
35049249ce7addafaa0bd09480cd8858cd2c54138fAndreas Gampe
36049249ce7addafaa0bd09480cd8858cd2c54138fAndreas Gampe};  // namespace android
37049249ce7addafaa0bd09480cd8858cd2c54138fAndreas Gampe
38049249ce7addafaa0bd09480cd8858cd2c54138fAndreas Gampe#endif  // NATIVE_BRIDGE_H_
39049249ce7addafaa0bd09480cd8858cd2c54138fAndreas Gampe
40