source: gtest-1.7.0/test/gtest_shuffle_test_.cc@ 12746

Last change on this file since 12746 was 12746, checked in by hock@…, 10 years ago

integrated the Google Testing Framework (gtest)

and wrote an Hello World test, to ensure the framework is working..

File size: 3.2 KB
Line 
1// Copyright 2009, Google Inc.
2// All rights reserved.
3//
4// Redistribution and use in source and binary forms, with or without
5// modification, are permitted provided that the following conditions are
6// met:
7//
8// * Redistributions of source code must retain the above copyright
9// notice, this list of conditions and the following disclaimer.
10// * Redistributions in binary form must reproduce the above
11// copyright notice, this list of conditions and the following disclaimer
12// in the documentation and/or other materials provided with the
13// distribution.
14// * Neither the name of Google Inc. nor the names of its
15// contributors may be used to endorse or promote products derived from
16// this software without specific prior written permission.
17//
18// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29//
30// Author: wan@google.com (Zhanyong Wan)
31
32// Verifies that test shuffling works.
33
34#include "gtest/gtest.h"
35
36namespace {
37
38using ::testing::EmptyTestEventListener;
39using ::testing::InitGoogleTest;
40using ::testing::Message;
41using ::testing::Test;
42using ::testing::TestEventListeners;
43using ::testing::TestInfo;
44using ::testing::UnitTest;
45using ::testing::internal::scoped_ptr;
46
47// The test methods are empty, as the sole purpose of this program is
48// to print the test names before/after shuffling.
49
50class A : public Test {};
51TEST_F(A, A) {}
52TEST_F(A, B) {}
53
54TEST(ADeathTest, A) {}
55TEST(ADeathTest, B) {}
56TEST(ADeathTest, C) {}
57
58TEST(B, A) {}
59TEST(B, B) {}
60TEST(B, C) {}
61TEST(B, DISABLED_D) {}
62TEST(B, DISABLED_E) {}
63
64TEST(BDeathTest, A) {}
65TEST(BDeathTest, B) {}
66
67TEST(C, A) {}
68TEST(C, B) {}
69TEST(C, C) {}
70TEST(C, DISABLED_D) {}
71
72TEST(CDeathTest, A) {}
73
74TEST(DISABLED_D, A) {}
75TEST(DISABLED_D, DISABLED_B) {}
76
77// This printer prints the full test names only, starting each test
78// iteration with a "----" marker.
79class TestNamePrinter : public EmptyTestEventListener {
80 public:
81 virtual void OnTestIterationStart(const UnitTest& /* unit_test */,
82 int /* iteration */) {
83 printf("----\n");
84 }
85
86 virtual void OnTestStart(const TestInfo& test_info) {
87 printf("%s.%s\n", test_info.test_case_name(), test_info.name());
88 }
89};
90
91} // namespace
92
93int main(int argc, char **argv) {
94 InitGoogleTest(&argc, argv);
95
96 // Replaces the default printer with TestNamePrinter, which prints
97 // the test name only.
98 TestEventListeners& listeners = UnitTest::GetInstance()->listeners();
99 delete listeners.Release(listeners.default_result_printer());
100 listeners.Append(new TestNamePrinter);
101
102 return RUN_ALL_TESTS();
103}
Note: See TracBrowser for help on using the repository browser.