xref: /aosp_15_r20/system/teeui/test/gtest_main.cpp (revision 20bfefbe1966c142a35ae1ab84a8af250b3fd403)
1*20bfefbeSAndroid Build Coastguard Worker /*
2*20bfefbeSAndroid Build Coastguard Worker  * Copyright (C) 2019 The Android Open Source Project
3*20bfefbeSAndroid Build Coastguard Worker  *
4*20bfefbeSAndroid Build Coastguard Worker  * Licensed under the Apache License, Version 2.0 (the "License");
5*20bfefbeSAndroid Build Coastguard Worker  * you may not use this file except in compliance with the License.
6*20bfefbeSAndroid Build Coastguard Worker  * You may obtain a copy of the License at
7*20bfefbeSAndroid Build Coastguard Worker  *
8*20bfefbeSAndroid Build Coastguard Worker  *      http://www.apache.org/licenses/LICENSE-2.0
9*20bfefbeSAndroid Build Coastguard Worker  *
10*20bfefbeSAndroid Build Coastguard Worker  * Unless required by applicable law or agreed to in writing, software
11*20bfefbeSAndroid Build Coastguard Worker  * distributed under the License is distributed on an "AS IS" BASIS,
12*20bfefbeSAndroid Build Coastguard Worker  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13*20bfefbeSAndroid Build Coastguard Worker  * See the License for the specific language governing permissions and
14*20bfefbeSAndroid Build Coastguard Worker  * limitations under the License.
15*20bfefbeSAndroid Build Coastguard Worker  */
16*20bfefbeSAndroid Build Coastguard Worker 
17*20bfefbeSAndroid Build Coastguard Worker #include <gtest/gtest.h>
main(int argc,char ** argv)18*20bfefbeSAndroid Build Coastguard Worker int main(int argc, char** argv) {
19*20bfefbeSAndroid Build Coastguard Worker     ::testing::InitGoogleTest(&argc, argv);
20*20bfefbeSAndroid Build Coastguard Worker     return RUN_ALL_TESTS();
21*20bfefbeSAndroid Build Coastguard Worker }
22