googletest-shuffle-test_.cc 3.2 KB

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