NativeBridgeTest.h revision f9d9e2a2d96559c3165405d572b08e260156074a
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";
26f9d9e2a2d96559c3165405d572b08e260156074aCalin Juravle
27049249ce7addafaa0bd09480cd8858cd2c54138fAndreas Gampenamespace android {
28049249ce7addafaa0bd09480cd8858cd2c54138fAndreas Gampe
29049249ce7addafaa0bd09480cd8858cd2c54138fAndreas Gampeclass NativeBridgeTest : public testing::Test {
30049249ce7addafaa0bd09480cd8858cd2c54138fAndreas Gampe};
31049249ce7addafaa0bd09480cd8858cd2c54138fAndreas Gampe
32049249ce7addafaa0bd09480cd8858cd2c54138fAndreas Gampe};  // namespace android
33049249ce7addafaa0bd09480cd8858cd2c54138fAndreas Gampe
34049249ce7addafaa0bd09480cd8858cd2c54138fAndreas Gampe#endif  // NATIVE_BRIDGE_H_
35049249ce7addafaa0bd09480cd8858cd2c54138fAndreas Gampe
36