xref: /AOO42X/main/registry/workben/test.cxx (revision b1c5455db1639c48e26c568e4fa7ee78ca5d60ee)
1*51134e9eSAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*51134e9eSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*51134e9eSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*51134e9eSAndrew Rist  * distributed with this work for additional information
6*51134e9eSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*51134e9eSAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*51134e9eSAndrew Rist  * "License"); you may not use this file except in compliance
9*51134e9eSAndrew Rist  * with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir  *
11*51134e9eSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir  *
13*51134e9eSAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*51134e9eSAndrew Rist  * software distributed under the License is distributed on an
15*51134e9eSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*51134e9eSAndrew Rist  * KIND, either express or implied.  See the License for the
17*51134e9eSAndrew Rist  * specific language governing permissions and limitations
18*51134e9eSAndrew Rist  * under the License.
19cdf0e10cSrcweir  *
20*51134e9eSAndrew Rist  *************************************************************/
21*51134e9eSAndrew Rist 
22*51134e9eSAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
25cdf0e10cSrcweir #include "precompiled_registry.hxx"
26cdf0e10cSrcweir 
27cdf0e10cSrcweir #include <stdio.h>
28cdf0e10cSrcweir 
29cdf0e10cSrcweir #if (defined UNX) || (defined OS2)
main()30cdf0e10cSrcweir int main()
31cdf0e10cSrcweir #else
32cdf0e10cSrcweir int _cdecl main()
33cdf0e10cSrcweir #endif
34cdf0e10cSrcweir {
35cdf0e10cSrcweir     void test_coreReflection();
36cdf0e10cSrcweir     void test_registry_CppApi();
37cdf0e10cSrcweir     void test_generateMerge1();
38cdf0e10cSrcweir     void test_generateMerge2();
39cdf0e10cSrcweir     void test_merge();
40cdf0e10cSrcweir 
41cdf0e10cSrcweir     test_coreReflection();
42cdf0e10cSrcweir     test_registry_CppApi();
43cdf0e10cSrcweir     test_generateMerge1();
44cdf0e10cSrcweir     test_generateMerge2();
45cdf0e10cSrcweir     test_merge();
46cdf0e10cSrcweir 
47cdf0e10cSrcweir     return(0);
48cdf0e10cSrcweir }
49