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