rj_schema 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (323) hide show
  1. checksums.yaml +5 -5
  2. data/Rakefile +4 -0
  3. data/ext/rj_schema/rapidjson/thirdparty/gtest/CMakeLists.txt +16 -0
  4. data/ext/rj_schema/rapidjson/thirdparty/gtest/README.md +141 -0
  5. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/CHANGES +126 -0
  6. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/CMakeLists.txt +202 -0
  7. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/CONTRIBUTORS +40 -0
  8. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/LICENSE +28 -0
  9. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/Makefile.am +224 -0
  10. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/README.md +333 -0
  11. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/configure.ac +146 -0
  12. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/docs/CheatSheet.md +562 -0
  13. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/docs/CookBook.md +3675 -0
  14. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/docs/DesignDoc.md +280 -0
  15. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/docs/DevGuide.md +132 -0
  16. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/docs/Documentation.md +12 -0
  17. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/docs/ForDummies.md +439 -0
  18. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/docs/FrequentlyAskedQuestions.md +628 -0
  19. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/docs/KnownIssues.md +19 -0
  20. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/docs/v1_5/CheatSheet.md +525 -0
  21. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/docs/v1_5/CookBook.md +3250 -0
  22. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/docs/v1_5/Documentation.md +11 -0
  23. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/docs/v1_5/ForDummies.md +439 -0
  24. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/docs/v1_5/FrequentlyAskedQuestions.md +624 -0
  25. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/docs/v1_6/CheatSheet.md +534 -0
  26. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/docs/v1_6/CookBook.md +3342 -0
  27. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/docs/v1_6/Documentation.md +12 -0
  28. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/docs/v1_6/ForDummies.md +439 -0
  29. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/docs/v1_6/FrequentlyAskedQuestions.md +628 -0
  30. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/docs/v1_7/CheatSheet.md +556 -0
  31. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/docs/v1_7/CookBook.md +3432 -0
  32. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/docs/v1_7/Documentation.md +12 -0
  33. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/docs/v1_7/ForDummies.md +439 -0
  34. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/docs/v1_7/FrequentlyAskedQuestions.md +628 -0
  35. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/include/gmock/gmock-actions.h +1205 -0
  36. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/include/gmock/gmock-cardinalities.h +147 -0
  37. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/include/gmock/gmock-generated-actions.h +2377 -0
  38. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/include/gmock/gmock-generated-actions.h.pump +794 -0
  39. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/include/gmock/gmock-generated-function-mockers.h +1095 -0
  40. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/include/gmock/gmock-generated-function-mockers.h.pump +291 -0
  41. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/include/gmock/gmock-generated-matchers.h +2179 -0
  42. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/include/gmock/gmock-generated-matchers.h.pump +672 -0
  43. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/include/gmock/gmock-generated-nice-strict.h +397 -0
  44. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/include/gmock/gmock-generated-nice-strict.h.pump +161 -0
  45. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/include/gmock/gmock-matchers.h +4399 -0
  46. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/include/gmock/gmock-more-actions.h +246 -0
  47. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/include/gmock/gmock-more-matchers.h +58 -0
  48. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/include/gmock/gmock-spec-builders.h +1847 -0
  49. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/include/gmock/gmock.h +94 -0
  50. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/include/gmock/internal/custom/gmock-generated-actions.h +8 -0
  51. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/include/gmock/internal/custom/gmock-generated-actions.h.pump +10 -0
  52. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/include/gmock/internal/custom/gmock-matchers.h +39 -0
  53. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/include/gmock/internal/custom/gmock-port.h +46 -0
  54. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/include/gmock/internal/gmock-generated-internal-utils.h +279 -0
  55. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/include/gmock/internal/gmock-generated-internal-utils.h.pump +136 -0
  56. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/include/gmock/internal/gmock-internal-utils.h +511 -0
  57. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/include/gmock/internal/gmock-port.h +91 -0
  58. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/make/Makefile +101 -0
  59. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/msvc/2005/gmock.sln +32 -0
  60. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/msvc/2005/gmock.vcproj +191 -0
  61. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/msvc/2005/gmock_config.vsprops +15 -0
  62. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/msvc/2005/gmock_main.vcproj +187 -0
  63. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/msvc/2005/gmock_test.vcproj +201 -0
  64. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/msvc/2010/gmock.sln +32 -0
  65. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/msvc/2010/gmock.vcxproj +82 -0
  66. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/msvc/2010/gmock_config.props +19 -0
  67. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/msvc/2010/gmock_main.vcxproj +88 -0
  68. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/msvc/2010/gmock_test.vcxproj +101 -0
  69. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/msvc/2015/gmock.sln +32 -0
  70. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/msvc/2015/gmock.vcxproj +84 -0
  71. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/msvc/2015/gmock_config.props +19 -0
  72. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/msvc/2015/gmock_main.vcxproj +90 -0
  73. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/msvc/2015/gmock_test.vcxproj +103 -0
  74. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/scripts/fuse_gmock_files.py +240 -0
  75. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/scripts/generator/LICENSE +203 -0
  76. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/scripts/generator/README +35 -0
  77. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/scripts/generator/README.cppclean +115 -0
  78. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/scripts/generator/cpp/__init__.py +0 -0
  79. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/scripts/generator/cpp/ast.py +1733 -0
  80. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/scripts/generator/cpp/gmock_class.py +227 -0
  81. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/scripts/generator/cpp/gmock_class_test.py +448 -0
  82. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/scripts/generator/cpp/keywords.py +59 -0
  83. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/scripts/generator/cpp/tokenize.py +287 -0
  84. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/scripts/generator/cpp/utils.py +41 -0
  85. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/scripts/generator/gmock_gen.py +31 -0
  86. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/scripts/gmock-config.in +303 -0
  87. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/scripts/gmock_doctor.py +640 -0
  88. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/scripts/upload.py +1387 -0
  89. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/scripts/upload_gmock.py +78 -0
  90. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/src/gmock-all.cc +47 -0
  91. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/src/gmock-cardinalities.cc +156 -0
  92. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/src/gmock-internal-utils.cc +174 -0
  93. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/src/gmock-matchers.cc +498 -0
  94. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/src/gmock-spec-builders.cc +823 -0
  95. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/src/gmock.cc +183 -0
  96. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/src/gmock_main.cc +54 -0
  97. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/test/gmock-actions_test.cc +1411 -0
  98. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/test/gmock-cardinalities_test.cc +428 -0
  99. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/test/gmock-generated-actions_test.cc +1228 -0
  100. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/test/gmock-generated-function-mockers_test.cc +622 -0
  101. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/test/gmock-generated-internal-utils_test.cc +127 -0
  102. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/test/gmock-generated-matchers_test.cc +1286 -0
  103. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/test/gmock-internal-utils_test.cc +699 -0
  104. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/test/gmock-matchers_test.cc +5648 -0
  105. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/test/gmock-more-actions_test.cc +708 -0
  106. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/test/gmock-nice-strict_test.cc +424 -0
  107. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/test/gmock-port_test.cc +43 -0
  108. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/test/gmock-spec-builders_test.cc +2644 -0
  109. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/test/gmock_all_test.cc +51 -0
  110. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/test/gmock_ex_test.cc +81 -0
  111. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/test/gmock_leak_test.py +108 -0
  112. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/test/gmock_leak_test_.cc +100 -0
  113. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/test/gmock_link2_test.cc +40 -0
  114. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/test/gmock_link_test.cc +40 -0
  115. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/test/gmock_link_test.h +669 -0
  116. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/test/gmock_output_test.py +180 -0
  117. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/test/gmock_output_test_.cc +291 -0
  118. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/test/gmock_output_test_golden.txt +310 -0
  119. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/test/gmock_stress_test.cc +322 -0
  120. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/test/gmock_test.cc +220 -0
  121. data/ext/rj_schema/rapidjson/thirdparty/gtest/googlemock/test/gmock_test_utils.py +112 -0
  122. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/CHANGES +157 -0
  123. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/CMakeLists.txt +286 -0
  124. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/CONTRIBUTORS +37 -0
  125. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/LICENSE +28 -0
  126. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/Makefile.am +310 -0
  127. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/README.md +280 -0
  128. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/cmake/internal_utils.cmake +242 -0
  129. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/codegear/gtest.cbproj +138 -0
  130. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/codegear/gtest.groupproj +54 -0
  131. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/codegear/gtest_all.cc +38 -0
  132. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/codegear/gtest_link.cc +40 -0
  133. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/codegear/gtest_main.cbproj +82 -0
  134. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/codegear/gtest_unittest.cbproj +88 -0
  135. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/configure.ac +68 -0
  136. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/docs/AdvancedGuide.md +2182 -0
  137. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/docs/DevGuide.md +126 -0
  138. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/docs/Documentation.md +14 -0
  139. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/docs/FAQ.md +1087 -0
  140. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/docs/Primer.md +502 -0
  141. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/docs/PumpManual.md +177 -0
  142. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/docs/Samples.md +14 -0
  143. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/docs/V1_5_AdvancedGuide.md +2096 -0
  144. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/docs/V1_5_Documentation.md +12 -0
  145. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/docs/V1_5_FAQ.md +886 -0
  146. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/docs/V1_5_Primer.md +497 -0
  147. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/docs/V1_5_PumpManual.md +177 -0
  148. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/docs/V1_5_XcodeGuide.md +93 -0
  149. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/docs/V1_6_AdvancedGuide.md +2178 -0
  150. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/docs/V1_6_Documentation.md +14 -0
  151. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/docs/V1_6_FAQ.md +1038 -0
  152. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/docs/V1_6_Primer.md +501 -0
  153. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/docs/V1_6_PumpManual.md +177 -0
  154. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/docs/V1_6_Samples.md +14 -0
  155. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/docs/V1_6_XcodeGuide.md +93 -0
  156. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/docs/V1_7_AdvancedGuide.md +2181 -0
  157. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/docs/V1_7_Documentation.md +14 -0
  158. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/docs/V1_7_FAQ.md +1082 -0
  159. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/docs/V1_7_Primer.md +501 -0
  160. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/docs/V1_7_PumpManual.md +177 -0
  161. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/docs/V1_7_Samples.md +14 -0
  162. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/docs/V1_7_XcodeGuide.md +93 -0
  163. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/docs/XcodeGuide.md +93 -0
  164. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/include/gtest/gtest-death-test.h +294 -0
  165. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/include/gtest/gtest-message.h +250 -0
  166. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/include/gtest/gtest-param-test.h +1444 -0
  167. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/include/gtest/gtest-param-test.h.pump +510 -0
  168. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/include/gtest/gtest-printers.h +993 -0
  169. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/include/gtest/gtest-spi.h +232 -0
  170. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/include/gtest/gtest-test-part.h +179 -0
  171. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/include/gtest/gtest-typed-test.h +263 -0
  172. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/include/gtest/gtest.h +2236 -0
  173. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/include/gtest/gtest_pred_impl.h +358 -0
  174. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/include/gtest/gtest_prod.h +58 -0
  175. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/include/gtest/internal/custom/gtest-port.h +69 -0
  176. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/include/gtest/internal/custom/gtest-printers.h +42 -0
  177. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/include/gtest/internal/custom/gtest.h +41 -0
  178. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/include/gtest/internal/gtest-death-test-internal.h +319 -0
  179. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/include/gtest/internal/gtest-filepath.h +206 -0
  180. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/include/gtest/internal/gtest-internal.h +1238 -0
  181. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/include/gtest/internal/gtest-linked_ptr.h +243 -0
  182. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/include/gtest/internal/gtest-param-util-generated.h +5146 -0
  183. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/include/gtest/internal/gtest-param-util-generated.h.pump +286 -0
  184. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/include/gtest/internal/gtest-param-util.h +731 -0
  185. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/include/gtest/internal/gtest-port-arch.h +93 -0
  186. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/include/gtest/internal/gtest-port.h +2554 -0
  187. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/include/gtest/internal/gtest-string.h +167 -0
  188. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/include/gtest/internal/gtest-tuple.h +1020 -0
  189. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/include/gtest/internal/gtest-tuple.h.pump +347 -0
  190. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/include/gtest/internal/gtest-type-util.h +3331 -0
  191. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/include/gtest/internal/gtest-type-util.h.pump +297 -0
  192. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/m4/acx_pthread.m4 +363 -0
  193. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/m4/gtest.m4 +74 -0
  194. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/make/Makefile +82 -0
  195. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/msvc/gtest-md.sln +45 -0
  196. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/msvc/gtest-md.vcproj +126 -0
  197. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/msvc/gtest.sln +45 -0
  198. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/msvc/gtest.vcproj +126 -0
  199. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/msvc/gtest_main-md.vcproj +129 -0
  200. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/msvc/gtest_main.vcproj +129 -0
  201. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/msvc/gtest_prod_test-md.vcproj +164 -0
  202. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/msvc/gtest_prod_test.vcproj +164 -0
  203. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/msvc/gtest_unittest-md.vcproj +147 -0
  204. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/msvc/gtest_unittest.vcproj +147 -0
  205. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/samples/prime_tables.h +123 -0
  206. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/samples/sample1.cc +68 -0
  207. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/samples/sample1.h +43 -0
  208. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/samples/sample10_unittest.cc +144 -0
  209. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/samples/sample1_unittest.cc +153 -0
  210. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/samples/sample2.cc +56 -0
  211. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/samples/sample2.h +85 -0
  212. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/samples/sample2_unittest.cc +109 -0
  213. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/samples/sample3-inl.h +172 -0
  214. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/samples/sample3_unittest.cc +151 -0
  215. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/samples/sample4.cc +46 -0
  216. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/samples/sample4.h +53 -0
  217. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/samples/sample4_unittest.cc +45 -0
  218. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/samples/sample5_unittest.cc +199 -0
  219. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/samples/sample6_unittest.cc +224 -0
  220. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/samples/sample7_unittest.cc +130 -0
  221. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/samples/sample8_unittest.cc +173 -0
  222. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/samples/sample9_unittest.cc +160 -0
  223. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/scripts/common.py +83 -0
  224. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/scripts/fuse_gtest_files.py +253 -0
  225. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/scripts/gen_gtest_pred_impl.py +730 -0
  226. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/scripts/gtest-config.in +274 -0
  227. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/scripts/pump.py +855 -0
  228. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/scripts/release_docs.py +158 -0
  229. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/scripts/test/Makefile +59 -0
  230. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/scripts/upload.py +1387 -0
  231. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/scripts/upload_gtest.py +78 -0
  232. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/src/gtest-all.cc +48 -0
  233. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/src/gtest-death-test.cc +1342 -0
  234. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/src/gtest-filepath.cc +387 -0
  235. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/src/gtest-internal-inl.h +1183 -0
  236. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/src/gtest-port.cc +1259 -0
  237. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/src/gtest-printers.cc +373 -0
  238. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/src/gtest-test-part.cc +110 -0
  239. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/src/gtest-typed-test.cc +118 -0
  240. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/src/gtest.cc +5388 -0
  241. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/src/gtest_main.cc +38 -0
  242. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest-death-test_ex_test.cc +93 -0
  243. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest-death-test_test.cc +1427 -0
  244. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest-filepath_test.cc +662 -0
  245. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest-linked_ptr_test.cc +154 -0
  246. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest-listener_test.cc +311 -0
  247. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest-message_test.cc +159 -0
  248. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest-options_test.cc +215 -0
  249. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest-param-test2_test.cc +65 -0
  250. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest-param-test_test.cc +1055 -0
  251. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest-param-test_test.h +57 -0
  252. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest-port_test.cc +1304 -0
  253. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest-printers_test.cc +1635 -0
  254. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest-test-part_test.cc +208 -0
  255. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest-tuple_test.cc +320 -0
  256. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest-typed-test2_test.cc +45 -0
  257. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest-typed-test_test.cc +380 -0
  258. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest-typed-test_test.h +66 -0
  259. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest-unittest-api_test.cc +341 -0
  260. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest_all_test.cc +47 -0
  261. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest_break_on_failure_unittest.py +212 -0
  262. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest_break_on_failure_unittest_.cc +88 -0
  263. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest_catch_exceptions_test.py +237 -0
  264. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest_catch_exceptions_test_.cc +311 -0
  265. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest_color_test.py +130 -0
  266. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest_color_test_.cc +71 -0
  267. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest_env_var_test.py +117 -0
  268. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest_env_var_test_.cc +126 -0
  269. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest_environment_test.cc +192 -0
  270. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest_filter_unittest.py +636 -0
  271. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest_filter_unittest_.cc +140 -0
  272. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest_help_test.py +172 -0
  273. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest_help_test_.cc +46 -0
  274. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest_list_tests_unittest.py +207 -0
  275. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest_list_tests_unittest_.cc +157 -0
  276. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest_main_unittest.cc +45 -0
  277. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest_no_test_unittest.cc +56 -0
  278. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest_output_test.py +340 -0
  279. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest_output_test_.cc +1062 -0
  280. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest_output_test_golden_lin.txt +743 -0
  281. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest_pred_impl_unittest.cc +2427 -0
  282. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest_premature_exit_test.cc +127 -0
  283. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest_prod_test.cc +57 -0
  284. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest_repeat_test.cc +253 -0
  285. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest_shuffle_test.py +325 -0
  286. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest_shuffle_test_.cc +103 -0
  287. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest_sole_header_test.cc +57 -0
  288. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest_stress_test.cc +256 -0
  289. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest_test_utils.py +320 -0
  290. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest_throw_on_failure_ex_test.cc +92 -0
  291. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest_throw_on_failure_test.py +171 -0
  292. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest_throw_on_failure_test_.cc +72 -0
  293. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest_uninitialized_test.py +70 -0
  294. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest_uninitialized_test_.cc +43 -0
  295. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest_unittest.cc +7706 -0
  296. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest_xml_outfile1_test_.cc +49 -0
  297. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest_xml_outfile2_test_.cc +49 -0
  298. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest_xml_outfiles_test.py +132 -0
  299. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest_xml_output_unittest.py +308 -0
  300. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest_xml_output_unittest_.cc +181 -0
  301. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/gtest_xml_test_utils.py +194 -0
  302. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/production.cc +36 -0
  303. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/test/production.h +55 -0
  304. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/xcode/Config/DebugProject.xcconfig +30 -0
  305. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/xcode/Config/FrameworkTarget.xcconfig +17 -0
  306. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/xcode/Config/General.xcconfig +41 -0
  307. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/xcode/Config/ReleaseProject.xcconfig +32 -0
  308. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/xcode/Config/StaticLibraryTarget.xcconfig +18 -0
  309. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/xcode/Config/TestTarget.xcconfig +8 -0
  310. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/xcode/Resources/Info.plist +30 -0
  311. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/xcode/Samples/FrameworkSample/Info.plist +28 -0
  312. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/xcode/Samples/FrameworkSample/WidgetFramework.xcodeproj/project.pbxproj +457 -0
  313. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/xcode/Samples/FrameworkSample/runtests.sh +62 -0
  314. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/xcode/Samples/FrameworkSample/widget.cc +63 -0
  315. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/xcode/Samples/FrameworkSample/widget.h +59 -0
  316. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/xcode/Samples/FrameworkSample/widget_test.cc +68 -0
  317. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/xcode/Scripts/runtests.sh +65 -0
  318. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/xcode/Scripts/versiongenerate.py +100 -0
  319. data/ext/rj_schema/rapidjson/thirdparty/gtest/googletest/xcode/gtest.xcodeproj/project.pbxproj +1135 -0
  320. data/ext/rj_schema/rapidjson/thirdparty/gtest/travis.sh +15 -0
  321. data/ext/rj_schema/rj_schema.cpp +64 -41
  322. data/lib/rj_schema.rb +1 -1
  323. metadata +378 -5
@@ -0,0 +1,397 @@
1
+ // This file was GENERATED by command:
2
+ // pump.py gmock-generated-nice-strict.h.pump
3
+ // DO NOT EDIT BY HAND!!!
4
+
5
+ // Copyright 2008, Google Inc.
6
+ // All rights reserved.
7
+ //
8
+ // Redistribution and use in source and binary forms, with or without
9
+ // modification, are permitted provided that the following conditions are
10
+ // met:
11
+ //
12
+ // * Redistributions of source code must retain the above copyright
13
+ // notice, this list of conditions and the following disclaimer.
14
+ // * Redistributions in binary form must reproduce the above
15
+ // copyright notice, this list of conditions and the following disclaimer
16
+ // in the documentation and/or other materials provided with the
17
+ // distribution.
18
+ // * Neither the name of Google Inc. nor the names of its
19
+ // contributors may be used to endorse or promote products derived from
20
+ // this software without specific prior written permission.
21
+ //
22
+ // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23
+ // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24
+ // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25
+ // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
26
+ // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
27
+ // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
28
+ // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29
+ // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30
+ // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31
+ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
32
+ // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33
+ //
34
+ // Author: wan@google.com (Zhanyong Wan)
35
+
36
+ // Implements class templates NiceMock, NaggyMock, and StrictMock.
37
+ //
38
+ // Given a mock class MockFoo that is created using Google Mock,
39
+ // NiceMock<MockFoo> is a subclass of MockFoo that allows
40
+ // uninteresting calls (i.e. calls to mock methods that have no
41
+ // EXPECT_CALL specs), NaggyMock<MockFoo> is a subclass of MockFoo
42
+ // that prints a warning when an uninteresting call occurs, and
43
+ // StrictMock<MockFoo> is a subclass of MockFoo that treats all
44
+ // uninteresting calls as errors.
45
+ //
46
+ // Currently a mock is naggy by default, so MockFoo and
47
+ // NaggyMock<MockFoo> behave like the same. However, we will soon
48
+ // switch the default behavior of mocks to be nice, as that in general
49
+ // leads to more maintainable tests. When that happens, MockFoo will
50
+ // stop behaving like NaggyMock<MockFoo> and start behaving like
51
+ // NiceMock<MockFoo>.
52
+ //
53
+ // NiceMock, NaggyMock, and StrictMock "inherit" the constructors of
54
+ // their respective base class, with up-to 10 arguments. Therefore
55
+ // you can write NiceMock<MockFoo>(5, "a") to construct a nice mock
56
+ // where MockFoo has a constructor that accepts (int, const char*),
57
+ // for example.
58
+ //
59
+ // A known limitation is that NiceMock<MockFoo>, NaggyMock<MockFoo>,
60
+ // and StrictMock<MockFoo> only works for mock methods defined using
61
+ // the MOCK_METHOD* family of macros DIRECTLY in the MockFoo class.
62
+ // If a mock method is defined in a base class of MockFoo, the "nice"
63
+ // or "strict" modifier may not affect it, depending on the compiler.
64
+ // In particular, nesting NiceMock, NaggyMock, and StrictMock is NOT
65
+ // supported.
66
+ //
67
+ // Another known limitation is that the constructors of the base mock
68
+ // cannot have arguments passed by non-const reference, which are
69
+ // banned by the Google C++ style guide anyway.
70
+
71
+ #ifndef GMOCK_INCLUDE_GMOCK_GMOCK_GENERATED_NICE_STRICT_H_
72
+ #define GMOCK_INCLUDE_GMOCK_GMOCK_GENERATED_NICE_STRICT_H_
73
+
74
+ #include "gmock/gmock-spec-builders.h"
75
+ #include "gmock/internal/gmock-port.h"
76
+
77
+ namespace testing {
78
+
79
+ template <class MockClass>
80
+ class NiceMock : public MockClass {
81
+ public:
82
+ // We don't factor out the constructor body to a common method, as
83
+ // we have to avoid a possible clash with members of MockClass.
84
+ NiceMock() {
85
+ ::testing::Mock::AllowUninterestingCalls(
86
+ internal::ImplicitCast_<MockClass*>(this));
87
+ }
88
+
89
+ // C++ doesn't (yet) allow inheritance of constructors, so we have
90
+ // to define it for each arity.
91
+ template <typename A1>
92
+ explicit NiceMock(const A1& a1) : MockClass(a1) {
93
+ ::testing::Mock::AllowUninterestingCalls(
94
+ internal::ImplicitCast_<MockClass*>(this));
95
+ }
96
+ template <typename A1, typename A2>
97
+ NiceMock(const A1& a1, const A2& a2) : MockClass(a1, a2) {
98
+ ::testing::Mock::AllowUninterestingCalls(
99
+ internal::ImplicitCast_<MockClass*>(this));
100
+ }
101
+
102
+ template <typename A1, typename A2, typename A3>
103
+ NiceMock(const A1& a1, const A2& a2, const A3& a3) : MockClass(a1, a2, a3) {
104
+ ::testing::Mock::AllowUninterestingCalls(
105
+ internal::ImplicitCast_<MockClass*>(this));
106
+ }
107
+
108
+ template <typename A1, typename A2, typename A3, typename A4>
109
+ NiceMock(const A1& a1, const A2& a2, const A3& a3,
110
+ const A4& a4) : MockClass(a1, a2, a3, a4) {
111
+ ::testing::Mock::AllowUninterestingCalls(
112
+ internal::ImplicitCast_<MockClass*>(this));
113
+ }
114
+
115
+ template <typename A1, typename A2, typename A3, typename A4, typename A5>
116
+ NiceMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4,
117
+ const A5& a5) : MockClass(a1, a2, a3, a4, a5) {
118
+ ::testing::Mock::AllowUninterestingCalls(
119
+ internal::ImplicitCast_<MockClass*>(this));
120
+ }
121
+
122
+ template <typename A1, typename A2, typename A3, typename A4, typename A5,
123
+ typename A6>
124
+ NiceMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4,
125
+ const A5& a5, const A6& a6) : MockClass(a1, a2, a3, a4, a5, a6) {
126
+ ::testing::Mock::AllowUninterestingCalls(
127
+ internal::ImplicitCast_<MockClass*>(this));
128
+ }
129
+
130
+ template <typename A1, typename A2, typename A3, typename A4, typename A5,
131
+ typename A6, typename A7>
132
+ NiceMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4,
133
+ const A5& a5, const A6& a6, const A7& a7) : MockClass(a1, a2, a3, a4, a5,
134
+ a6, a7) {
135
+ ::testing::Mock::AllowUninterestingCalls(
136
+ internal::ImplicitCast_<MockClass*>(this));
137
+ }
138
+
139
+ template <typename A1, typename A2, typename A3, typename A4, typename A5,
140
+ typename A6, typename A7, typename A8>
141
+ NiceMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4,
142
+ const A5& a5, const A6& a6, const A7& a7, const A8& a8) : MockClass(a1,
143
+ a2, a3, a4, a5, a6, a7, a8) {
144
+ ::testing::Mock::AllowUninterestingCalls(
145
+ internal::ImplicitCast_<MockClass*>(this));
146
+ }
147
+
148
+ template <typename A1, typename A2, typename A3, typename A4, typename A5,
149
+ typename A6, typename A7, typename A8, typename A9>
150
+ NiceMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4,
151
+ const A5& a5, const A6& a6, const A7& a7, const A8& a8,
152
+ const A9& a9) : MockClass(a1, a2, a3, a4, a5, a6, a7, a8, a9) {
153
+ ::testing::Mock::AllowUninterestingCalls(
154
+ internal::ImplicitCast_<MockClass*>(this));
155
+ }
156
+
157
+ template <typename A1, typename A2, typename A3, typename A4, typename A5,
158
+ typename A6, typename A7, typename A8, typename A9, typename A10>
159
+ NiceMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4,
160
+ const A5& a5, const A6& a6, const A7& a7, const A8& a8, const A9& a9,
161
+ const A10& a10) : MockClass(a1, a2, a3, a4, a5, a6, a7, a8, a9, a10) {
162
+ ::testing::Mock::AllowUninterestingCalls(
163
+ internal::ImplicitCast_<MockClass*>(this));
164
+ }
165
+
166
+ virtual ~NiceMock() {
167
+ ::testing::Mock::UnregisterCallReaction(
168
+ internal::ImplicitCast_<MockClass*>(this));
169
+ }
170
+
171
+ private:
172
+ GTEST_DISALLOW_COPY_AND_ASSIGN_(NiceMock);
173
+ };
174
+
175
+ template <class MockClass>
176
+ class NaggyMock : public MockClass {
177
+ public:
178
+ // We don't factor out the constructor body to a common method, as
179
+ // we have to avoid a possible clash with members of MockClass.
180
+ NaggyMock() {
181
+ ::testing::Mock::WarnUninterestingCalls(
182
+ internal::ImplicitCast_<MockClass*>(this));
183
+ }
184
+
185
+ // C++ doesn't (yet) allow inheritance of constructors, so we have
186
+ // to define it for each arity.
187
+ template <typename A1>
188
+ explicit NaggyMock(const A1& a1) : MockClass(a1) {
189
+ ::testing::Mock::WarnUninterestingCalls(
190
+ internal::ImplicitCast_<MockClass*>(this));
191
+ }
192
+ template <typename A1, typename A2>
193
+ NaggyMock(const A1& a1, const A2& a2) : MockClass(a1, a2) {
194
+ ::testing::Mock::WarnUninterestingCalls(
195
+ internal::ImplicitCast_<MockClass*>(this));
196
+ }
197
+
198
+ template <typename A1, typename A2, typename A3>
199
+ NaggyMock(const A1& a1, const A2& a2, const A3& a3) : MockClass(a1, a2, a3) {
200
+ ::testing::Mock::WarnUninterestingCalls(
201
+ internal::ImplicitCast_<MockClass*>(this));
202
+ }
203
+
204
+ template <typename A1, typename A2, typename A3, typename A4>
205
+ NaggyMock(const A1& a1, const A2& a2, const A3& a3,
206
+ const A4& a4) : MockClass(a1, a2, a3, a4) {
207
+ ::testing::Mock::WarnUninterestingCalls(
208
+ internal::ImplicitCast_<MockClass*>(this));
209
+ }
210
+
211
+ template <typename A1, typename A2, typename A3, typename A4, typename A5>
212
+ NaggyMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4,
213
+ const A5& a5) : MockClass(a1, a2, a3, a4, a5) {
214
+ ::testing::Mock::WarnUninterestingCalls(
215
+ internal::ImplicitCast_<MockClass*>(this));
216
+ }
217
+
218
+ template <typename A1, typename A2, typename A3, typename A4, typename A5,
219
+ typename A6>
220
+ NaggyMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4,
221
+ const A5& a5, const A6& a6) : MockClass(a1, a2, a3, a4, a5, a6) {
222
+ ::testing::Mock::WarnUninterestingCalls(
223
+ internal::ImplicitCast_<MockClass*>(this));
224
+ }
225
+
226
+ template <typename A1, typename A2, typename A3, typename A4, typename A5,
227
+ typename A6, typename A7>
228
+ NaggyMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4,
229
+ const A5& a5, const A6& a6, const A7& a7) : MockClass(a1, a2, a3, a4, a5,
230
+ a6, a7) {
231
+ ::testing::Mock::WarnUninterestingCalls(
232
+ internal::ImplicitCast_<MockClass*>(this));
233
+ }
234
+
235
+ template <typename A1, typename A2, typename A3, typename A4, typename A5,
236
+ typename A6, typename A7, typename A8>
237
+ NaggyMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4,
238
+ const A5& a5, const A6& a6, const A7& a7, const A8& a8) : MockClass(a1,
239
+ a2, a3, a4, a5, a6, a7, a8) {
240
+ ::testing::Mock::WarnUninterestingCalls(
241
+ internal::ImplicitCast_<MockClass*>(this));
242
+ }
243
+
244
+ template <typename A1, typename A2, typename A3, typename A4, typename A5,
245
+ typename A6, typename A7, typename A8, typename A9>
246
+ NaggyMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4,
247
+ const A5& a5, const A6& a6, const A7& a7, const A8& a8,
248
+ const A9& a9) : MockClass(a1, a2, a3, a4, a5, a6, a7, a8, a9) {
249
+ ::testing::Mock::WarnUninterestingCalls(
250
+ internal::ImplicitCast_<MockClass*>(this));
251
+ }
252
+
253
+ template <typename A1, typename A2, typename A3, typename A4, typename A5,
254
+ typename A6, typename A7, typename A8, typename A9, typename A10>
255
+ NaggyMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4,
256
+ const A5& a5, const A6& a6, const A7& a7, const A8& a8, const A9& a9,
257
+ const A10& a10) : MockClass(a1, a2, a3, a4, a5, a6, a7, a8, a9, a10) {
258
+ ::testing::Mock::WarnUninterestingCalls(
259
+ internal::ImplicitCast_<MockClass*>(this));
260
+ }
261
+
262
+ virtual ~NaggyMock() {
263
+ ::testing::Mock::UnregisterCallReaction(
264
+ internal::ImplicitCast_<MockClass*>(this));
265
+ }
266
+
267
+ private:
268
+ GTEST_DISALLOW_COPY_AND_ASSIGN_(NaggyMock);
269
+ };
270
+
271
+ template <class MockClass>
272
+ class StrictMock : public MockClass {
273
+ public:
274
+ // We don't factor out the constructor body to a common method, as
275
+ // we have to avoid a possible clash with members of MockClass.
276
+ StrictMock() {
277
+ ::testing::Mock::FailUninterestingCalls(
278
+ internal::ImplicitCast_<MockClass*>(this));
279
+ }
280
+
281
+ // C++ doesn't (yet) allow inheritance of constructors, so we have
282
+ // to define it for each arity.
283
+ template <typename A1>
284
+ explicit StrictMock(const A1& a1) : MockClass(a1) {
285
+ ::testing::Mock::FailUninterestingCalls(
286
+ internal::ImplicitCast_<MockClass*>(this));
287
+ }
288
+ template <typename A1, typename A2>
289
+ StrictMock(const A1& a1, const A2& a2) : MockClass(a1, a2) {
290
+ ::testing::Mock::FailUninterestingCalls(
291
+ internal::ImplicitCast_<MockClass*>(this));
292
+ }
293
+
294
+ template <typename A1, typename A2, typename A3>
295
+ StrictMock(const A1& a1, const A2& a2, const A3& a3) : MockClass(a1, a2, a3) {
296
+ ::testing::Mock::FailUninterestingCalls(
297
+ internal::ImplicitCast_<MockClass*>(this));
298
+ }
299
+
300
+ template <typename A1, typename A2, typename A3, typename A4>
301
+ StrictMock(const A1& a1, const A2& a2, const A3& a3,
302
+ const A4& a4) : MockClass(a1, a2, a3, a4) {
303
+ ::testing::Mock::FailUninterestingCalls(
304
+ internal::ImplicitCast_<MockClass*>(this));
305
+ }
306
+
307
+ template <typename A1, typename A2, typename A3, typename A4, typename A5>
308
+ StrictMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4,
309
+ const A5& a5) : MockClass(a1, a2, a3, a4, a5) {
310
+ ::testing::Mock::FailUninterestingCalls(
311
+ internal::ImplicitCast_<MockClass*>(this));
312
+ }
313
+
314
+ template <typename A1, typename A2, typename A3, typename A4, typename A5,
315
+ typename A6>
316
+ StrictMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4,
317
+ const A5& a5, const A6& a6) : MockClass(a1, a2, a3, a4, a5, a6) {
318
+ ::testing::Mock::FailUninterestingCalls(
319
+ internal::ImplicitCast_<MockClass*>(this));
320
+ }
321
+
322
+ template <typename A1, typename A2, typename A3, typename A4, typename A5,
323
+ typename A6, typename A7>
324
+ StrictMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4,
325
+ const A5& a5, const A6& a6, const A7& a7) : MockClass(a1, a2, a3, a4, a5,
326
+ a6, a7) {
327
+ ::testing::Mock::FailUninterestingCalls(
328
+ internal::ImplicitCast_<MockClass*>(this));
329
+ }
330
+
331
+ template <typename A1, typename A2, typename A3, typename A4, typename A5,
332
+ typename A6, typename A7, typename A8>
333
+ StrictMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4,
334
+ const A5& a5, const A6& a6, const A7& a7, const A8& a8) : MockClass(a1,
335
+ a2, a3, a4, a5, a6, a7, a8) {
336
+ ::testing::Mock::FailUninterestingCalls(
337
+ internal::ImplicitCast_<MockClass*>(this));
338
+ }
339
+
340
+ template <typename A1, typename A2, typename A3, typename A4, typename A5,
341
+ typename A6, typename A7, typename A8, typename A9>
342
+ StrictMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4,
343
+ const A5& a5, const A6& a6, const A7& a7, const A8& a8,
344
+ const A9& a9) : MockClass(a1, a2, a3, a4, a5, a6, a7, a8, a9) {
345
+ ::testing::Mock::FailUninterestingCalls(
346
+ internal::ImplicitCast_<MockClass*>(this));
347
+ }
348
+
349
+ template <typename A1, typename A2, typename A3, typename A4, typename A5,
350
+ typename A6, typename A7, typename A8, typename A9, typename A10>
351
+ StrictMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4,
352
+ const A5& a5, const A6& a6, const A7& a7, const A8& a8, const A9& a9,
353
+ const A10& a10) : MockClass(a1, a2, a3, a4, a5, a6, a7, a8, a9, a10) {
354
+ ::testing::Mock::FailUninterestingCalls(
355
+ internal::ImplicitCast_<MockClass*>(this));
356
+ }
357
+
358
+ virtual ~StrictMock() {
359
+ ::testing::Mock::UnregisterCallReaction(
360
+ internal::ImplicitCast_<MockClass*>(this));
361
+ }
362
+
363
+ private:
364
+ GTEST_DISALLOW_COPY_AND_ASSIGN_(StrictMock);
365
+ };
366
+
367
+ // The following specializations catch some (relatively more common)
368
+ // user errors of nesting nice and strict mocks. They do NOT catch
369
+ // all possible errors.
370
+
371
+ // These specializations are declared but not defined, as NiceMock,
372
+ // NaggyMock, and StrictMock cannot be nested.
373
+
374
+ template <typename MockClass>
375
+ class NiceMock<NiceMock<MockClass> >;
376
+ template <typename MockClass>
377
+ class NiceMock<NaggyMock<MockClass> >;
378
+ template <typename MockClass>
379
+ class NiceMock<StrictMock<MockClass> >;
380
+
381
+ template <typename MockClass>
382
+ class NaggyMock<NiceMock<MockClass> >;
383
+ template <typename MockClass>
384
+ class NaggyMock<NaggyMock<MockClass> >;
385
+ template <typename MockClass>
386
+ class NaggyMock<StrictMock<MockClass> >;
387
+
388
+ template <typename MockClass>
389
+ class StrictMock<NiceMock<MockClass> >;
390
+ template <typename MockClass>
391
+ class StrictMock<NaggyMock<MockClass> >;
392
+ template <typename MockClass>
393
+ class StrictMock<StrictMock<MockClass> >;
394
+
395
+ } // namespace testing
396
+
397
+ #endif // GMOCK_INCLUDE_GMOCK_GMOCK_GENERATED_NICE_STRICT_H_
@@ -0,0 +1,161 @@
1
+ $$ -*- mode: c++; -*-
2
+ $$ This is a Pump source file. Please use Pump to convert it to
3
+ $$ gmock-generated-nice-strict.h.
4
+ $$
5
+ $var n = 10 $$ The maximum arity we support.
6
+ // Copyright 2008, Google Inc.
7
+ // All rights reserved.
8
+ //
9
+ // Redistribution and use in source and binary forms, with or without
10
+ // modification, are permitted provided that the following conditions are
11
+ // met:
12
+ //
13
+ // * Redistributions of source code must retain the above copyright
14
+ // notice, this list of conditions and the following disclaimer.
15
+ // * Redistributions in binary form must reproduce the above
16
+ // copyright notice, this list of conditions and the following disclaimer
17
+ // in the documentation and/or other materials provided with the
18
+ // distribution.
19
+ // * Neither the name of Google Inc. nor the names of its
20
+ // contributors may be used to endorse or promote products derived from
21
+ // this software without specific prior written permission.
22
+ //
23
+ // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24
+ // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25
+ // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
26
+ // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
27
+ // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28
+ // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
29
+ // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30
+ // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31
+ // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32
+ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
33
+ // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34
+ //
35
+ // Author: wan@google.com (Zhanyong Wan)
36
+
37
+ // Implements class templates NiceMock, NaggyMock, and StrictMock.
38
+ //
39
+ // Given a mock class MockFoo that is created using Google Mock,
40
+ // NiceMock<MockFoo> is a subclass of MockFoo that allows
41
+ // uninteresting calls (i.e. calls to mock methods that have no
42
+ // EXPECT_CALL specs), NaggyMock<MockFoo> is a subclass of MockFoo
43
+ // that prints a warning when an uninteresting call occurs, and
44
+ // StrictMock<MockFoo> is a subclass of MockFoo that treats all
45
+ // uninteresting calls as errors.
46
+ //
47
+ // Currently a mock is naggy by default, so MockFoo and
48
+ // NaggyMock<MockFoo> behave like the same. However, we will soon
49
+ // switch the default behavior of mocks to be nice, as that in general
50
+ // leads to more maintainable tests. When that happens, MockFoo will
51
+ // stop behaving like NaggyMock<MockFoo> and start behaving like
52
+ // NiceMock<MockFoo>.
53
+ //
54
+ // NiceMock, NaggyMock, and StrictMock "inherit" the constructors of
55
+ // their respective base class, with up-to $n arguments. Therefore
56
+ // you can write NiceMock<MockFoo>(5, "a") to construct a nice mock
57
+ // where MockFoo has a constructor that accepts (int, const char*),
58
+ // for example.
59
+ //
60
+ // A known limitation is that NiceMock<MockFoo>, NaggyMock<MockFoo>,
61
+ // and StrictMock<MockFoo> only works for mock methods defined using
62
+ // the MOCK_METHOD* family of macros DIRECTLY in the MockFoo class.
63
+ // If a mock method is defined in a base class of MockFoo, the "nice"
64
+ // or "strict" modifier may not affect it, depending on the compiler.
65
+ // In particular, nesting NiceMock, NaggyMock, and StrictMock is NOT
66
+ // supported.
67
+ //
68
+ // Another known limitation is that the constructors of the base mock
69
+ // cannot have arguments passed by non-const reference, which are
70
+ // banned by the Google C++ style guide anyway.
71
+
72
+ #ifndef GMOCK_INCLUDE_GMOCK_GMOCK_GENERATED_NICE_STRICT_H_
73
+ #define GMOCK_INCLUDE_GMOCK_GMOCK_GENERATED_NICE_STRICT_H_
74
+
75
+ #include "gmock/gmock-spec-builders.h"
76
+ #include "gmock/internal/gmock-port.h"
77
+
78
+ namespace testing {
79
+
80
+ $range kind 0..2
81
+ $for kind [[
82
+
83
+ $var clazz=[[$if kind==0 [[NiceMock]]
84
+ $elif kind==1 [[NaggyMock]]
85
+ $else [[StrictMock]]]]
86
+
87
+ $var method=[[$if kind==0 [[AllowUninterestingCalls]]
88
+ $elif kind==1 [[WarnUninterestingCalls]]
89
+ $else [[FailUninterestingCalls]]]]
90
+
91
+ template <class MockClass>
92
+ class $clazz : public MockClass {
93
+ public:
94
+ // We don't factor out the constructor body to a common method, as
95
+ // we have to avoid a possible clash with members of MockClass.
96
+ $clazz() {
97
+ ::testing::Mock::$method(
98
+ internal::ImplicitCast_<MockClass*>(this));
99
+ }
100
+
101
+ // C++ doesn't (yet) allow inheritance of constructors, so we have
102
+ // to define it for each arity.
103
+ template <typename A1>
104
+ explicit $clazz(const A1& a1) : MockClass(a1) {
105
+ ::testing::Mock::$method(
106
+ internal::ImplicitCast_<MockClass*>(this));
107
+ }
108
+
109
+ $range i 2..n
110
+ $for i [[
111
+ $range j 1..i
112
+ template <$for j, [[typename A$j]]>
113
+ $clazz($for j, [[const A$j& a$j]]) : MockClass($for j, [[a$j]]) {
114
+ ::testing::Mock::$method(
115
+ internal::ImplicitCast_<MockClass*>(this));
116
+ }
117
+
118
+
119
+ ]]
120
+ virtual ~$clazz() {
121
+ ::testing::Mock::UnregisterCallReaction(
122
+ internal::ImplicitCast_<MockClass*>(this));
123
+ }
124
+
125
+ private:
126
+ GTEST_DISALLOW_COPY_AND_ASSIGN_($clazz);
127
+ };
128
+
129
+ ]]
130
+
131
+ // The following specializations catch some (relatively more common)
132
+ // user errors of nesting nice and strict mocks. They do NOT catch
133
+ // all possible errors.
134
+
135
+ // These specializations are declared but not defined, as NiceMock,
136
+ // NaggyMock, and StrictMock cannot be nested.
137
+
138
+ template <typename MockClass>
139
+ class NiceMock<NiceMock<MockClass> >;
140
+ template <typename MockClass>
141
+ class NiceMock<NaggyMock<MockClass> >;
142
+ template <typename MockClass>
143
+ class NiceMock<StrictMock<MockClass> >;
144
+
145
+ template <typename MockClass>
146
+ class NaggyMock<NiceMock<MockClass> >;
147
+ template <typename MockClass>
148
+ class NaggyMock<NaggyMock<MockClass> >;
149
+ template <typename MockClass>
150
+ class NaggyMock<StrictMock<MockClass> >;
151
+
152
+ template <typename MockClass>
153
+ class StrictMock<NiceMock<MockClass> >;
154
+ template <typename MockClass>
155
+ class StrictMock<NaggyMock<MockClass> >;
156
+ template <typename MockClass>
157
+ class StrictMock<StrictMock<MockClass> >;
158
+
159
+ } // namespace testing
160
+
161
+ #endif // GMOCK_INCLUDE_GMOCK_GMOCK_GENERATED_NICE_STRICT_H_