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