sample2_unittest.cc 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. // Copyright 2005, 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. // A sample program demonstrating using Google C++ testing framework.
  30. //
  31. // Author: wan@google.com (Zhanyong Wan)
  32. // This sample shows how to write a more complex unit test for a class
  33. // that has multiple member functions.
  34. //
  35. // Usually, it's a good idea to have one test for each method in your
  36. // class. You don't have to do that exactly, but it helps to keep
  37. // your tests organized. You may also throw in additional tests as
  38. // needed.
  39. #include "sample2.h"
  40. #include "gtest/gtest.h"
  41. // In this example, we test the MyString class (a simple string).
  42. // Tests the default c'tor.
  43. TEST(MyString, DefaultConstructor) {
  44. const MyString s;
  45. // Asserts that s.c_string() returns NULL.
  46. //
  47. // <TechnicalDetails>
  48. //
  49. // If we write NULL instead of
  50. //
  51. // static_cast<const char *>(NULL)
  52. //
  53. // in this assertion, it will generate a warning on gcc 3.4. The
  54. // reason is that EXPECT_EQ needs to know the types of its
  55. // arguments in order to print them when it fails. Since NULL is
  56. // #defined as 0, the compiler will use the formatter function for
  57. // int to print it. However, gcc thinks that NULL should be used as
  58. // a pointer, not an int, and therefore complains.
  59. //
  60. // The root of the problem is C++'s lack of distinction between the
  61. // integer number 0 and the null pointer constant. Unfortunately,
  62. // we have to live with this fact.
  63. //
  64. // </TechnicalDetails>
  65. EXPECT_STREQ(NULL, s.c_string());
  66. EXPECT_EQ(0u, s.Length());
  67. }
  68. const char kHelloString[] = "Hello, world!";
  69. // Tests the c'tor that accepts a C string.
  70. TEST(MyString, ConstructorFromCString) {
  71. const MyString s(kHelloString);
  72. EXPECT_EQ(0, strcmp(s.c_string(), kHelloString));
  73. EXPECT_EQ(sizeof(kHelloString)/sizeof(kHelloString[0]) - 1,
  74. s.Length());
  75. }
  76. // Tests the copy c'tor.
  77. TEST(MyString, CopyConstructor) {
  78. const MyString s1(kHelloString);
  79. const MyString s2 = s1;
  80. EXPECT_EQ(0, strcmp(s2.c_string(), kHelloString));
  81. }
  82. // Tests the Set method.
  83. TEST(MyString, Set) {
  84. MyString s;
  85. s.Set(kHelloString);
  86. EXPECT_EQ(0, strcmp(s.c_string(), kHelloString));
  87. // Set should work when the input pointer is the same as the one
  88. // already in the MyString object.
  89. s.Set(s.c_string());
  90. EXPECT_EQ(0, strcmp(s.c_string(), kHelloString));
  91. // Can we set the MyString to NULL?
  92. s.Set(NULL);
  93. EXPECT_STREQ(NULL, s.c_string());
  94. }