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