xref: /trunk/main/o3tl/qa/main.cxx (revision 18cf0442)
1*18cf0442SDamjan Jovanovic /**************************************************************
2*18cf0442SDamjan Jovanovic  *
3*18cf0442SDamjan Jovanovic  * Licensed to the Apache Software Foundation (ASF) under one
4*18cf0442SDamjan Jovanovic  * or more contributor license agreements.  See the NOTICE file
5*18cf0442SDamjan Jovanovic  * distributed with this work for additional information
6*18cf0442SDamjan Jovanovic  * regarding copyright ownership.  The ASF licenses this file
7*18cf0442SDamjan Jovanovic  * to you under the Apache License, Version 2.0 (the
8*18cf0442SDamjan Jovanovic  * "License"); you may not use this file except in compliance
9*18cf0442SDamjan Jovanovic  * with the License.  You may obtain a copy of the License at
10*18cf0442SDamjan Jovanovic  *
11*18cf0442SDamjan Jovanovic  *   http://www.apache.org/licenses/LICENSE-2.0
12*18cf0442SDamjan Jovanovic  *
13*18cf0442SDamjan Jovanovic  * Unless required by applicable law or agreed to in writing,
14*18cf0442SDamjan Jovanovic  * software distributed under the License is distributed on an
15*18cf0442SDamjan Jovanovic  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*18cf0442SDamjan Jovanovic  * KIND, either express or implied.  See the License for the
17*18cf0442SDamjan Jovanovic  * specific language governing permissions and limitations
18*18cf0442SDamjan Jovanovic  * under the License.
19*18cf0442SDamjan Jovanovic  *
20*18cf0442SDamjan Jovanovic  *************************************************************/
21*18cf0442SDamjan Jovanovic 
22*18cf0442SDamjan Jovanovic #include "gtest/gtest.h"
23*18cf0442SDamjan Jovanovic 
main(int argc,char ** argv)24*18cf0442SDamjan Jovanovic int main(int argc, char **argv)
25*18cf0442SDamjan Jovanovic {
26*18cf0442SDamjan Jovanovic     ::testing::InitGoogleTest(&argc, argv);
27*18cf0442SDamjan Jovanovic     return RUN_ALL_TESTS();
28*18cf0442SDamjan Jovanovic }
29