1*b89a7cc2SEnji Cooper // Copyright 2006, Google Inc.
2*b89a7cc2SEnji Cooper // All rights reserved.
3*b89a7cc2SEnji Cooper //
4*b89a7cc2SEnji Cooper // Redistribution and use in source and binary forms, with or without
5*b89a7cc2SEnji Cooper // modification, are permitted provided that the following conditions are
6*b89a7cc2SEnji Cooper // met:
7*b89a7cc2SEnji Cooper //
8*b89a7cc2SEnji Cooper //     * Redistributions of source code must retain the above copyright
9*b89a7cc2SEnji Cooper // notice, this list of conditions and the following disclaimer.
10*b89a7cc2SEnji Cooper //     * Redistributions in binary form must reproduce the above
11*b89a7cc2SEnji Cooper // copyright notice, this list of conditions and the following disclaimer
12*b89a7cc2SEnji Cooper // in the documentation and/or other materials provided with the
13*b89a7cc2SEnji Cooper // distribution.
14*b89a7cc2SEnji Cooper //     * Neither the name of Google Inc. nor the names of its
15*b89a7cc2SEnji Cooper // contributors may be used to endorse or promote products derived from
16*b89a7cc2SEnji Cooper // this software without specific prior written permission.
17*b89a7cc2SEnji Cooper //
18*b89a7cc2SEnji Cooper // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19*b89a7cc2SEnji Cooper // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20*b89a7cc2SEnji Cooper // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21*b89a7cc2SEnji Cooper // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22*b89a7cc2SEnji Cooper // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23*b89a7cc2SEnji Cooper // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24*b89a7cc2SEnji Cooper // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25*b89a7cc2SEnji Cooper // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26*b89a7cc2SEnji Cooper // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27*b89a7cc2SEnji Cooper // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28*b89a7cc2SEnji Cooper // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29*b89a7cc2SEnji Cooper 
30*b89a7cc2SEnji Cooper // Tests that a Google Test program that has no test defined can run
31*b89a7cc2SEnji Cooper // successfully.
32*b89a7cc2SEnji Cooper 
33*b89a7cc2SEnji Cooper #include "gtest/gtest.h"
34*b89a7cc2SEnji Cooper 
main(int argc,char ** argv)35*b89a7cc2SEnji Cooper int main(int argc, char **argv) {
36*b89a7cc2SEnji Cooper   testing::InitGoogleTest(&argc, argv);
37*b89a7cc2SEnji Cooper 
38*b89a7cc2SEnji Cooper   // An ad-hoc assertion outside of all tests.
39*b89a7cc2SEnji Cooper   //
40*b89a7cc2SEnji Cooper   // This serves three purposes:
41*b89a7cc2SEnji Cooper   //
42*b89a7cc2SEnji Cooper   // 1. It verifies that an ad-hoc assertion can be executed even if
43*b89a7cc2SEnji Cooper   //    no test is defined.
44*b89a7cc2SEnji Cooper   // 2. It verifies that a failed ad-hoc assertion causes the test
45*b89a7cc2SEnji Cooper   //    program to fail.
46*b89a7cc2SEnji Cooper   // 3. We had a bug where the XML output won't be generated if an
47*b89a7cc2SEnji Cooper   //    assertion is executed before RUN_ALL_TESTS() is called, even
48*b89a7cc2SEnji Cooper   //    though --gtest_output=xml is specified.  This makes sure the
49*b89a7cc2SEnji Cooper   //    bug is fixed and doesn't regress.
50*b89a7cc2SEnji Cooper   EXPECT_EQ(1, 2);
51*b89a7cc2SEnji Cooper 
52*b89a7cc2SEnji Cooper   // The above EXPECT_EQ() should cause RUN_ALL_TESTS() to return non-zero.
53*b89a7cc2SEnji Cooper   return RUN_ALL_TESTS() ? 0 : 1;
54*b89a7cc2SEnji Cooper }
55