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