10c74fc78392703e19ba51ce0ced510a55a0a994bsqian/*
20c74fc78392703e19ba51ce0ced510a55a0a994bsqian * Copyright (C) 2017 The Android Open Source Project
30c74fc78392703e19ba51ce0ced510a55a0a994bsqian *
40c74fc78392703e19ba51ce0ced510a55a0a994bsqian * Licensed under the Apache License, Version 2.0 (the "License");
50c74fc78392703e19ba51ce0ced510a55a0a994bsqian * you may not use this file except in compliance with the License.
60c74fc78392703e19ba51ce0ced510a55a0a994bsqian * You may obtain a copy of the License at
70c74fc78392703e19ba51ce0ced510a55a0a994bsqian *
80c74fc78392703e19ba51ce0ced510a55a0a994bsqian *      http://www.apache.org/licenses/LICENSE-2.0
90c74fc78392703e19ba51ce0ced510a55a0a994bsqian *
100c74fc78392703e19ba51ce0ced510a55a0a994bsqian * Unless required by applicable law or agreed to in writing, software
110c74fc78392703e19ba51ce0ced510a55a0a994bsqian * distributed under the License is distributed on an "AS IS" BASIS,
120c74fc78392703e19ba51ce0ced510a55a0a994bsqian * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
130c74fc78392703e19ba51ce0ced510a55a0a994bsqian * See the License for the specific language governing permissions and
140c74fc78392703e19ba51ce0ced510a55a0a994bsqian * limitations under the License.
150c74fc78392703e19ba51ce0ced510a55a0a994bsqian */
160c74fc78392703e19ba51ce0ced510a55a0a994bsqian
170c74fc78392703e19ba51ce0ced510a55a0a994bsqian#include <radio_hidl_hal_utils_v1_1.h>
180c74fc78392703e19ba51ce0ced510a55a0a994bsqian
190c74fc78392703e19ba51ce0ced510a55a0a994bsqianint main(int argc, char** argv) {
2021b0a0ad2555d3cf5231864a474399fdb00992b2Zhuoyao Zhang    ::testing::AddGlobalTestEnvironment(RadioHidlEnvironment::Instance());
210c74fc78392703e19ba51ce0ced510a55a0a994bsqian    ::testing::InitGoogleTest(&argc, argv);
2221b0a0ad2555d3cf5231864a474399fdb00992b2Zhuoyao Zhang    RadioHidlEnvironment::Instance()->init(&argc, argv);
230c74fc78392703e19ba51ce0ced510a55a0a994bsqian    int status = RUN_ALL_TESTS();
240c74fc78392703e19ba51ce0ced510a55a0a994bsqian    LOG(INFO) << "Test result = " << status;
250c74fc78392703e19ba51ce0ced510a55a0a994bsqian    return status;
2621b0a0ad2555d3cf5231864a474399fdb00992b2Zhuoyao Zhang}
27