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