media/webrtc/trunk/testing/gtest/test/gtest_shuffle_test_.cc

Thu, 15 Jan 2015 15:55:04 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:55:04 +0100
branch
TOR_BUG_9701
changeset 9
a63d609f5ebe
permissions
-rw-r--r--

Back out 97036ab72558 which inappropriately compared turds to third parties.

     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)
    32 // Verifies that test shuffling works.
    34 #include "gtest/gtest.h"
    36 namespace {
    38 using ::testing::EmptyTestEventListener;
    39 using ::testing::InitGoogleTest;
    40 using ::testing::Message;
    41 using ::testing::Test;
    42 using ::testing::TestEventListeners;
    43 using ::testing::TestInfo;
    44 using ::testing::UnitTest;
    45 using ::testing::internal::String;
    46 using ::testing::internal::scoped_ptr;
    48 // The test methods are empty, as the sole purpose of this program is
    49 // to print the test names before/after shuffling.
    51 class A : public Test {};
    52 TEST_F(A, A) {}
    53 TEST_F(A, B) {}
    55 TEST(ADeathTest, A) {}
    56 TEST(ADeathTest, B) {}
    57 TEST(ADeathTest, C) {}
    59 TEST(B, A) {}
    60 TEST(B, B) {}
    61 TEST(B, C) {}
    62 TEST(B, DISABLED_D) {}
    63 TEST(B, DISABLED_E) {}
    65 TEST(BDeathTest, A) {}
    66 TEST(BDeathTest, B) {}
    68 TEST(C, A) {}
    69 TEST(C, B) {}
    70 TEST(C, C) {}
    71 TEST(C, DISABLED_D) {}
    73 TEST(CDeathTest, A) {}
    75 TEST(DISABLED_D, A) {}
    76 TEST(DISABLED_D, DISABLED_B) {}
    78 // This printer prints the full test names only, starting each test
    79 // iteration with a "----" marker.
    80 class TestNamePrinter : public EmptyTestEventListener {
    81  public:
    82   virtual void OnTestIterationStart(const UnitTest& /* unit_test */,
    83                                     int /* iteration */) {
    84     printf("----\n");
    85   }
    87   virtual void OnTestStart(const TestInfo& test_info) {
    88     printf("%s.%s\n", test_info.test_case_name(), test_info.name());
    89   }
    90 };
    92 }  // namespace
    94 int main(int argc, char **argv) {
    95   InitGoogleTest(&argc, argv);
    97   // Replaces the default printer with TestNamePrinter, which prints
    98   // the test name only.
    99   TestEventListeners& listeners = UnitTest::GetInstance()->listeners();
   100   delete listeners.Release(listeners.default_result_printer());
   101   listeners.Append(new TestNamePrinter);
   103   return RUN_ALL_TESTS();
   104 }

mercurial