couchbase 4.2.2 → 4.2.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1523) hide show
  1. package/deps/couchbase-cxx-client/.github/workflows/sanitizers.yml +20 -12
  2. package/deps/couchbase-cxx-client/.github/workflows/tests.yml +5 -3
  3. package/deps/couchbase-cxx-client/.idea/vcs.xml +2 -0
  4. package/deps/couchbase-cxx-client/CMakeLists.txt +15 -6
  5. package/deps/couchbase-cxx-client/bin/build-tests +3 -0
  6. package/deps/couchbase-cxx-client/bin/build-tests.rb +9 -0
  7. package/deps/couchbase-cxx-client/bin/init-cluster +38 -11
  8. package/deps/couchbase-cxx-client/bin/run-unit-tests +9 -9
  9. package/deps/couchbase-cxx-client/cmake/CompilerWarnings.cmake +12 -4
  10. package/deps/couchbase-cxx-client/cmake/Documentation.cmake +4 -3
  11. package/deps/couchbase-cxx-client/cmake/OpenSSL.cmake +52 -7
  12. package/deps/couchbase-cxx-client/cmake/Testing.cmake +4 -4
  13. package/deps/couchbase-cxx-client/cmake/ThirdPartyDependencies.cmake +4 -0
  14. package/deps/couchbase-cxx-client/cmake/VersionInfo.cmake +39 -3
  15. package/deps/couchbase-cxx-client/cmake/test_openssl.cxx +7 -0
  16. package/deps/couchbase-cxx-client/core/bucket.cxx +3 -2
  17. package/deps/couchbase-cxx-client/core/bucket.hxx +9 -0
  18. package/deps/couchbase-cxx-client/core/cluster_options.cxx +2 -2
  19. package/deps/couchbase-cxx-client/core/cluster_options.hxx +3 -7
  20. package/deps/couchbase-cxx-client/core/cluster_options_fwd.hxx +26 -0
  21. package/deps/couchbase-cxx-client/core/config_profile.hxx +2 -65
  22. package/deps/couchbase-cxx-client/core/config_profiles.cxx +79 -0
  23. package/deps/couchbase-cxx-client/core/config_profiles.hxx +56 -0
  24. package/deps/couchbase-cxx-client/core/crypto/CMakeLists.txt +5 -1
  25. package/deps/couchbase-cxx-client/core/error_context/analytics.hxx +2 -1
  26. package/deps/couchbase-cxx-client/core/error_context/http.hxx +2 -1
  27. package/deps/couchbase-cxx-client/core/error_context/query.hxx +2 -1
  28. package/deps/couchbase-cxx-client/core/error_context/search.hxx +2 -1
  29. package/deps/couchbase-cxx-client/core/error_context/view.hxx +2 -1
  30. package/deps/couchbase-cxx-client/core/impl/analytics.cxx +236 -0
  31. package/deps/couchbase-cxx-client/core/impl/cluster.cxx +1 -1
  32. package/deps/couchbase-cxx-client/core/impl/collection_query_index_manager.cxx +3 -3
  33. package/deps/couchbase-cxx-client/core/impl/dns_srv_tracker.cxx +5 -3
  34. package/deps/couchbase-cxx-client/core/impl/get_all_query_indexes.cxx +3 -3
  35. package/deps/couchbase-cxx-client/core/impl/query.cxx +19 -17
  36. package/deps/couchbase-cxx-client/core/impl/subdoc/lookup_in_macro.cxx +1 -0
  37. package/deps/couchbase-cxx-client/core/impl/subdoc/mutate_in_macro.cxx +1 -0
  38. package/deps/couchbase-cxx-client/core/impl/transaction_get_result.cxx +54 -0
  39. package/deps/couchbase-cxx-client/core/io/dns_client.cxx +225 -0
  40. package/deps/couchbase-cxx-client/core/io/dns_client.hxx +19 -188
  41. package/deps/couchbase-cxx-client/core/io/http_context.hxx +1 -1
  42. package/deps/couchbase-cxx-client/core/io/http_session.hxx +10 -0
  43. package/deps/couchbase-cxx-client/core/io/http_session_manager.hxx +5 -3
  44. package/deps/couchbase-cxx-client/core/io/mcbp_session.cxx +27 -0
  45. package/deps/couchbase-cxx-client/core/io/retry_orchestrator.hxx +3 -2
  46. package/deps/couchbase-cxx-client/core/meta/CMakeLists.txt +7 -5
  47. package/deps/couchbase-cxx-client/core/meta/version.cxx +19 -0
  48. package/deps/couchbase-cxx-client/core/operations/document_analytics.cxx +1 -0
  49. package/deps/couchbase-cxx-client/core/operations/document_analytics.hxx +1 -0
  50. package/deps/couchbase-cxx-client/core/operations/document_append.hxx +1 -1
  51. package/deps/couchbase-cxx-client/core/operations/document_decrement.hxx +1 -1
  52. package/deps/couchbase-cxx-client/core/operations/document_exists.hxx +1 -1
  53. package/deps/couchbase-cxx-client/core/operations/document_get.hxx +1 -1
  54. package/deps/couchbase-cxx-client/core/operations/document_get_and_lock.hxx +1 -1
  55. package/deps/couchbase-cxx-client/core/operations/document_get_and_touch.hxx +1 -1
  56. package/deps/couchbase-cxx-client/core/operations/document_get_projected.hxx +1 -1
  57. package/deps/couchbase-cxx-client/core/operations/document_increment.hxx +1 -1
  58. package/deps/couchbase-cxx-client/core/operations/document_insert.hxx +1 -1
  59. package/deps/couchbase-cxx-client/core/operations/document_lookup_in.hxx +1 -1
  60. package/deps/couchbase-cxx-client/core/operations/document_mutate_in.hxx +1 -1
  61. package/deps/couchbase-cxx-client/core/operations/document_prepend.hxx +1 -1
  62. package/deps/couchbase-cxx-client/core/operations/document_query.cxx +2 -0
  63. package/deps/couchbase-cxx-client/core/operations/document_query.hxx +6 -0
  64. package/deps/couchbase-cxx-client/core/operations/document_remove.hxx +1 -1
  65. package/deps/couchbase-cxx-client/core/operations/document_replace.hxx +1 -1
  66. package/deps/couchbase-cxx-client/core/operations/document_search.cxx +6 -2
  67. package/deps/couchbase-cxx-client/core/operations/document_search.hxx +1 -1
  68. package/deps/couchbase-cxx-client/core/operations/document_touch.hxx +1 -1
  69. package/deps/couchbase-cxx-client/core/operations/document_unlock.hxx +1 -1
  70. package/deps/couchbase-cxx-client/core/operations/document_upsert.hxx +1 -1
  71. package/deps/couchbase-cxx-client/core/operations/document_view.hxx +1 -0
  72. package/deps/couchbase-cxx-client/core/operations/management/analytics_problem.hxx +2 -1
  73. package/deps/couchbase-cxx-client/core/operations/management/eventing_problem.hxx +2 -1
  74. package/deps/couchbase-cxx-client/core/platform/base64.cc +2 -1
  75. package/deps/couchbase-cxx-client/core/protocol/client_opcode.hxx +1 -0
  76. package/deps/couchbase-cxx-client/core/protocol/cmd_info.hxx +2 -1
  77. package/deps/couchbase-cxx-client/core/public_fwd.hxx +21 -0
  78. package/deps/couchbase-cxx-client/core/tls_verify_mode.hxx +26 -0
  79. package/deps/couchbase-cxx-client/core/topology/configuration.cxx +15 -2
  80. package/deps/couchbase-cxx-client/core/topology/configuration.hxx +5 -1
  81. package/deps/couchbase-cxx-client/core/transactions/active_transaction_record.hxx +2 -2
  82. package/deps/couchbase-cxx-client/core/transactions/atr_cleanup_entry.cxx +1 -0
  83. package/deps/couchbase-cxx-client/core/transactions/atr_ids.cxx +1 -1
  84. package/deps/couchbase-cxx-client/core/transactions/attempt_context_impl.cxx +78 -44
  85. package/deps/couchbase-cxx-client/core/transactions/attempt_context_impl.hxx +90 -59
  86. package/deps/couchbase-cxx-client/core/transactions/attempt_context_testing_hooks.cxx +93 -0
  87. package/deps/couchbase-cxx-client/core/transactions/attempt_context_testing_hooks.hxx +48 -75
  88. package/deps/couchbase-cxx-client/core/transactions/cleanup_testing_hooks.cxx +52 -0
  89. package/deps/couchbase-cxx-client/core/transactions/cleanup_testing_hooks.hxx +17 -31
  90. package/deps/couchbase-cxx-client/core/transactions/exceptions.cxx +0 -1
  91. package/deps/couchbase-cxx-client/core/transactions/exceptions.hxx +14 -11
  92. package/deps/couchbase-cxx-client/core/transactions/forward_compat.hxx +2 -2
  93. package/deps/couchbase-cxx-client/core/transactions/internal/transaction_context.hxx +14 -14
  94. package/deps/couchbase-cxx-client/core/transactions/internal/transaction_fields.hxx +1 -0
  95. package/deps/couchbase-cxx-client/core/transactions/internal/transactions_cleanup.hxx +7 -1
  96. package/deps/couchbase-cxx-client/core/transactions/staged_mutation.cxx +1 -1
  97. package/deps/couchbase-cxx-client/core/transactions/staged_mutation.hxx +12 -2
  98. package/deps/couchbase-cxx-client/core/transactions/transaction_context.cxx +9 -11
  99. package/deps/couchbase-cxx-client/core/transactions/transaction_get_result.cxx +41 -31
  100. package/deps/couchbase-cxx-client/core/transactions/transaction_get_result.hxx +69 -21
  101. package/deps/couchbase-cxx-client/core/transactions/transaction_links.hxx +13 -1
  102. package/deps/couchbase-cxx-client/core/transactions/transactions.cxx +5 -4
  103. package/deps/couchbase-cxx-client/core/transactions/transactions_cleanup.cxx +144 -155
  104. package/deps/couchbase-cxx-client/core/transactions/waitable_op_list.hxx +1 -0
  105. package/deps/couchbase-cxx-client/core/transactions.hxx +1 -1
  106. package/deps/couchbase-cxx-client/core/utils/connection_string.cxx +25 -3
  107. package/deps/couchbase-cxx-client/core/utils/connection_string.hxx +3 -3
  108. package/deps/couchbase-cxx-client/core/utils/crc32.hxx +3 -2
  109. package/deps/couchbase-cxx-client/core/utils/json.cxx +4 -1
  110. package/deps/couchbase-cxx-client/core/utils/json_streaming_lexer.hxx +2 -1
  111. package/deps/couchbase-cxx-client/core/utils/url_codec.cxx +2 -1
  112. package/deps/couchbase-cxx-client/couchbase/analytics_error_context.hxx +143 -0
  113. package/deps/couchbase-cxx-client/couchbase/analytics_meta_data.hxx +155 -0
  114. package/deps/couchbase-cxx-client/couchbase/analytics_metrics.hxx +163 -0
  115. package/deps/couchbase-cxx-client/couchbase/analytics_options.hxx +359 -0
  116. package/deps/couchbase-cxx-client/couchbase/analytics_result.hxx +102 -0
  117. package/deps/couchbase-cxx-client/couchbase/analytics_scan_consistency.hxx +46 -0
  118. package/deps/couchbase-cxx-client/couchbase/analytics_status.hxx +41 -0
  119. package/deps/couchbase-cxx-client/couchbase/analytics_warning.hxx +85 -0
  120. package/deps/couchbase-cxx-client/couchbase/behavior_options.hxx +10 -1
  121. package/deps/couchbase-cxx-client/couchbase/cluster.hxx +38 -3
  122. package/deps/couchbase-cxx-client/couchbase/cluster_options.hxx +10 -10
  123. package/deps/couchbase-cxx-client/couchbase/collection.hxx +22 -17
  124. package/deps/couchbase-cxx-client/couchbase/collection_query_index_manager.hxx +1 -1
  125. package/deps/couchbase-cxx-client/couchbase/common_options.hxx +1 -1
  126. package/deps/couchbase-cxx-client/couchbase/configuration_profile.hxx +1 -1
  127. package/deps/couchbase-cxx-client/couchbase/configuration_profiles_registry.hxx +0 -1
  128. package/deps/couchbase-cxx-client/couchbase/create_primary_query_index_options.hxx +1 -1
  129. package/deps/couchbase-cxx-client/couchbase/drop_primary_query_index_options.hxx +1 -1
  130. package/deps/couchbase-cxx-client/couchbase/drop_query_index_options.hxx +1 -1
  131. package/deps/couchbase-cxx-client/couchbase/fmt/analytics_status.hxx +76 -0
  132. package/deps/couchbase-cxx-client/couchbase/fmt/cas.hxx +12 -0
  133. package/deps/couchbase-cxx-client/couchbase/fmt/durability_level.hxx +6 -0
  134. package/deps/couchbase-cxx-client/couchbase/fmt/key_value_extended_error_info.hxx +6 -0
  135. package/deps/couchbase-cxx-client/couchbase/fmt/key_value_status_code.hxx +6 -0
  136. package/deps/couchbase-cxx-client/couchbase/fmt/mutation_token.hxx +6 -0
  137. package/deps/couchbase-cxx-client/couchbase/fmt/query_scan_consistency.hxx +6 -0
  138. package/deps/couchbase-cxx-client/couchbase/fmt/query_status.hxx +6 -0
  139. package/deps/couchbase-cxx-client/couchbase/fmt/retry_reason.hxx +6 -0
  140. package/deps/couchbase-cxx-client/couchbase/fmt/tls_verify_mode.hxx +6 -0
  141. package/deps/couchbase-cxx-client/couchbase/get_all_query_indexes_options.hxx +5 -4
  142. package/deps/couchbase-cxx-client/couchbase/query_index_manager.hxx +4 -2
  143. package/deps/couchbase-cxx-client/couchbase/query_options.hxx +0 -1
  144. package/deps/couchbase-cxx-client/couchbase/scope.hxx +35 -1
  145. package/deps/couchbase-cxx-client/couchbase/subdoc/array_add_unique.hxx +2 -0
  146. package/deps/couchbase-cxx-client/couchbase/subdoc/array_append.hxx +2 -0
  147. package/deps/couchbase-cxx-client/couchbase/subdoc/array_insert.hxx +2 -0
  148. package/deps/couchbase-cxx-client/couchbase/subdoc/array_prepend.hxx +2 -0
  149. package/deps/couchbase-cxx-client/couchbase/subdoc/count.hxx +2 -0
  150. package/deps/couchbase-cxx-client/couchbase/subdoc/counter.hxx +2 -0
  151. package/deps/couchbase-cxx-client/couchbase/subdoc/exists.hxx +2 -0
  152. package/deps/couchbase-cxx-client/couchbase/subdoc/get.hxx +2 -0
  153. package/deps/couchbase-cxx-client/couchbase/subdoc/insert.hxx +2 -0
  154. package/deps/couchbase-cxx-client/couchbase/subdoc/remove.hxx +2 -0
  155. package/deps/couchbase-cxx-client/couchbase/subdoc/replace.hxx +3 -1
  156. package/deps/couchbase-cxx-client/couchbase/subdoc/upsert.hxx +2 -0
  157. package/deps/couchbase-cxx-client/couchbase/tracing/request_span.hxx +63 -0
  158. package/deps/couchbase-cxx-client/couchbase/tracing/request_tracer.hxx +2 -40
  159. package/deps/couchbase-cxx-client/couchbase/transaction_op_error_context.hxx +4 -4
  160. package/deps/couchbase-cxx-client/couchbase/transactions/async_attempt_context.hxx +93 -14
  161. package/deps/couchbase-cxx-client/couchbase/transactions/attempt_context.hxx +88 -15
  162. package/deps/couchbase-cxx-client/couchbase/transactions/transaction_get_result.hxx +55 -35
  163. package/deps/couchbase-cxx-client/couchbase/transactions/transaction_keyspace.hxx +11 -1
  164. package/deps/couchbase-cxx-client/couchbase/transactions/transaction_options.hxx +79 -8
  165. package/deps/couchbase-cxx-client/couchbase/transactions/transaction_query_options.hxx +127 -15
  166. package/deps/couchbase-cxx-client/couchbase/transactions/transaction_query_result.hxx +6 -21
  167. package/deps/couchbase-cxx-client/couchbase/transactions/transaction_result.hxx +0 -1
  168. package/deps/couchbase-cxx-client/couchbase/transactions/transactions_cleanup_config.hxx +5 -3
  169. package/deps/couchbase-cxx-client/couchbase/transactions/transactions_config.hxx +9 -5
  170. package/deps/couchbase-cxx-client/couchbase/transactions/transactions_query_config.hxx +6 -3
  171. package/deps/couchbase-cxx-client/couchbase/transactions.hxx +36 -2
  172. package/deps/couchbase-cxx-client/docs/Doxyfile.in +324 -223
  173. package/deps/couchbase-cxx-client/docs/cbc-analytics.md +171 -0
  174. package/deps/couchbase-cxx-client/docs/cbc-get.md +160 -0
  175. package/deps/couchbase-cxx-client/docs/cbc-pillowfight.md +163 -0
  176. package/deps/couchbase-cxx-client/docs/cbc-query.md +179 -0
  177. package/deps/couchbase-cxx-client/docs/cbc.md +46 -0
  178. package/deps/couchbase-cxx-client/docs/cli.hxx +33 -0
  179. package/deps/couchbase-cxx-client/docs/doxygen-awesome.css +474 -89
  180. package/deps/couchbase-cxx-client/docs/mainpage.hxx +9 -8
  181. package/deps/couchbase-cxx-client/docs/stability.hxx +15 -0
  182. package/deps/couchbase-cxx-client/examples/async_game_server.cxx +56 -54
  183. package/deps/couchbase-cxx-client/examples/distributed_mutex.cxx +2 -0
  184. package/deps/couchbase-cxx-client/examples/game_server.cxx +9 -10
  185. package/deps/couchbase-cxx-client/test/CMakeLists.txt +9 -7
  186. package/deps/couchbase-cxx-client/test/benchmark_helper_integration.hxx +2 -2
  187. package/deps/couchbase-cxx-client/test/data/search_beers_dataset.json +70 -0
  188. package/deps/couchbase-cxx-client/test/data/search_beers_index_params.json +108 -0
  189. package/deps/couchbase-cxx-client/test/test_helper.hxx +6 -6
  190. package/deps/couchbase-cxx-client/test/test_integration_analytics.cxx +289 -13
  191. package/deps/couchbase-cxx-client/test/test_integration_crud.cxx +8 -1
  192. package/deps/couchbase-cxx-client/test/test_integration_diagnostics.cxx +3 -3
  193. package/deps/couchbase-cxx-client/test/test_integration_examples.cxx +182 -0
  194. package/deps/couchbase-cxx-client/test/test_integration_management.cxx +25 -9
  195. package/deps/couchbase-cxx-client/test/test_integration_query.cxx +1 -1
  196. package/deps/couchbase-cxx-client/test/test_integration_search.cxx +603 -0
  197. package/deps/couchbase-cxx-client/test/test_integration_subdoc.cxx +2 -2
  198. package/deps/couchbase-cxx-client/test/test_integration_tracer.cxx +2 -0
  199. package/deps/couchbase-cxx-client/test/test_integration_transcoders.cxx +9 -5
  200. package/deps/couchbase-cxx-client/test/test_transaction_context.cxx +550 -0
  201. package/deps/couchbase-cxx-client/test/test_transaction_examples.cxx +180 -0
  202. package/deps/couchbase-cxx-client/test/test_transaction_public_async_api.cxx +393 -0
  203. package/deps/couchbase-cxx-client/test/test_transaction_public_blocking_api.cxx +653 -0
  204. package/deps/couchbase-cxx-client/test/test_transaction_simple.cxx +984 -0
  205. package/deps/couchbase-cxx-client/test/test_transaction_simple_async.cxx +970 -0
  206. package/deps/couchbase-cxx-client/test/test_unit_config_profiles.cxx +13 -13
  207. package/deps/couchbase-cxx-client/test/test_unit_connection_string.cxx +35 -0
  208. package/deps/couchbase-cxx-client/test/test_unit_json_transcoder.cxx +4 -0
  209. package/deps/couchbase-cxx-client/test/test_unit_transaction_utils.cxx +113 -0
  210. package/deps/couchbase-cxx-client/test/test_unit_utils.cxx +8 -4
  211. package/deps/couchbase-cxx-client/test/utils/CMakeLists.txt +13 -9
  212. package/deps/couchbase-cxx-client/test/utils/integration_shortcuts.hxx +3 -3
  213. package/deps/couchbase-cxx-client/test/utils/integration_test_guard.cxx +19 -9
  214. package/deps/couchbase-cxx-client/test/utils/server_version.hxx +10 -0
  215. package/deps/couchbase-cxx-client/test/utils/test_data.cxx +41 -0
  216. package/deps/couchbase-cxx-client/test/utils/test_data.hxx +29 -0
  217. package/deps/couchbase-cxx-client/test/utils/wait_until.cxx +61 -0
  218. package/deps/couchbase-cxx-client/test/utils/wait_until.hxx +8 -1
  219. package/deps/couchbase-cxx-client/third_party/catch2/.bazelrc +10 -0
  220. package/deps/couchbase-cxx-client/third_party/catch2/.conan/build.py +4 -4
  221. package/deps/couchbase-cxx-client/third_party/catch2/.conan/test_package/CMakeLists.txt +5 -4
  222. package/deps/couchbase-cxx-client/third_party/catch2/.conan/test_package/conanfile.py +3 -2
  223. package/deps/couchbase-cxx-client/third_party/catch2/.conan/test_package/test_package.cpp +1 -3
  224. package/deps/couchbase-cxx-client/third_party/catch2/.github/FUNDING.yml +1 -0
  225. package/deps/couchbase-cxx-client/third_party/catch2/.github/workflows/linux-bazel-builds.yml +24 -0
  226. package/deps/couchbase-cxx-client/third_party/catch2/.github/workflows/linux-meson-builds.yml +43 -0
  227. package/deps/couchbase-cxx-client/third_party/catch2/.github/workflows/linux-other-builds.yml +104 -0
  228. package/deps/couchbase-cxx-client/third_party/catch2/.github/workflows/linux-simple-builds.yml +122 -0
  229. package/deps/couchbase-cxx-client/third_party/catch2/.github/workflows/mac-builds.yml +52 -0
  230. package/deps/couchbase-cxx-client/third_party/catch2/.github/workflows/validate-header-guards.yml +36 -0
  231. package/deps/couchbase-cxx-client/third_party/catch2/.github/workflows/windows-simple-builds.yml +37 -0
  232. package/deps/couchbase-cxx-client/third_party/catch2/BUILD.bazel +83 -8
  233. package/deps/couchbase-cxx-client/third_party/catch2/CMake/CatchConfigOptions.cmake +79 -0
  234. package/deps/couchbase-cxx-client/third_party/catch2/CMake/CatchMiscFunctions.cmake +120 -0
  235. package/deps/couchbase-cxx-client/third_party/catch2/CMake/catch2-with-main.pc.in +10 -0
  236. package/deps/couchbase-cxx-client/third_party/catch2/CMake/catch2.pc.in +5 -1
  237. package/deps/couchbase-cxx-client/third_party/catch2/CMakeLists.txt +98 -152
  238. package/deps/couchbase-cxx-client/third_party/catch2/CMakePresets.json +25 -0
  239. package/deps/couchbase-cxx-client/third_party/catch2/Doxyfile +2484 -0
  240. package/deps/couchbase-cxx-client/third_party/catch2/README.md +83 -17
  241. package/deps/couchbase-cxx-client/third_party/catch2/SECURITY.md +19 -0
  242. package/deps/couchbase-cxx-client/third_party/catch2/WORKSPACE.bazel +16 -0
  243. package/deps/couchbase-cxx-client/third_party/catch2/appveyor.yml +55 -73
  244. package/deps/couchbase-cxx-client/third_party/catch2/codecov.yml +3 -6
  245. package/deps/couchbase-cxx-client/third_party/catch2/conanfile.py +44 -14
  246. package/deps/couchbase-cxx-client/third_party/catch2/data/artwork/catch2-logo-small-with-background.png +0 -0
  247. package/deps/couchbase-cxx-client/third_party/catch2/docs/Readme.md +18 -16
  248. package/deps/couchbase-cxx-client/third_party/catch2/docs/assertions.md +45 -64
  249. package/deps/couchbase-cxx-client/third_party/catch2/docs/benchmarks.md +3 -6
  250. package/deps/couchbase-cxx-client/third_party/catch2/docs/ci-and-misc.md +27 -29
  251. package/deps/couchbase-cxx-client/third_party/catch2/docs/cmake-integration.md +157 -35
  252. package/deps/couchbase-cxx-client/third_party/catch2/docs/command-line.md +232 -65
  253. package/deps/couchbase-cxx-client/third_party/catch2/docs/commercial-users.md +14 -13
  254. package/deps/couchbase-cxx-client/third_party/catch2/docs/comparing-floating-point-numbers.md +192 -0
  255. package/deps/couchbase-cxx-client/third_party/catch2/docs/configuration.md +48 -54
  256. package/deps/couchbase-cxx-client/third_party/catch2/docs/contributing.md +150 -38
  257. package/deps/couchbase-cxx-client/third_party/catch2/docs/deprecations.md +14 -118
  258. package/deps/couchbase-cxx-client/third_party/catch2/docs/event-listeners.md +31 -62
  259. package/deps/couchbase-cxx-client/third_party/catch2/docs/faq.md +94 -0
  260. package/deps/couchbase-cxx-client/third_party/catch2/docs/generators.md +14 -10
  261. package/deps/couchbase-cxx-client/third_party/catch2/docs/limitations.md +34 -36
  262. package/deps/couchbase-cxx-client/third_party/catch2/docs/list-of-examples.md +0 -3
  263. package/deps/couchbase-cxx-client/third_party/catch2/docs/logging.md +2 -2
  264. package/deps/couchbase-cxx-client/third_party/catch2/docs/matchers.md +355 -122
  265. package/deps/couchbase-cxx-client/third_party/catch2/docs/migrate-v2-to-v3.md +98 -0
  266. package/deps/couchbase-cxx-client/third_party/catch2/docs/opensource-users.md +43 -13
  267. package/deps/couchbase-cxx-client/third_party/catch2/docs/other-macros.md +19 -18
  268. package/deps/couchbase-cxx-client/third_party/catch2/docs/own-main.md +50 -49
  269. package/deps/couchbase-cxx-client/third_party/catch2/docs/release-notes.md +375 -6
  270. package/deps/couchbase-cxx-client/third_party/catch2/docs/release-process.md +9 -16
  271. package/deps/couchbase-cxx-client/third_party/catch2/docs/reporter-events.md +175 -0
  272. package/deps/couchbase-cxx-client/third_party/catch2/docs/reporters.md +191 -25
  273. package/deps/couchbase-cxx-client/third_party/catch2/docs/skipping-passing-failing.md +129 -0
  274. package/deps/couchbase-cxx-client/third_party/catch2/docs/test-cases-and-sections.md +91 -20
  275. package/deps/couchbase-cxx-client/third_party/catch2/docs/test-fixtures.md +28 -9
  276. package/deps/couchbase-cxx-client/third_party/catch2/docs/tostring.md +3 -3
  277. package/deps/couchbase-cxx-client/third_party/catch2/docs/tutorial.md +87 -139
  278. package/deps/couchbase-cxx-client/third_party/catch2/docs/usage-tips.md +100 -0
  279. package/deps/couchbase-cxx-client/third_party/catch2/docs/why-catch.md +24 -11
  280. package/deps/couchbase-cxx-client/third_party/catch2/examples/010-TestCase.cpp +4 -7
  281. package/deps/couchbase-cxx-client/third_party/catch2/examples/020-TestCase-1.cpp +3 -9
  282. package/deps/couchbase-cxx-client/third_party/catch2/examples/020-TestCase-2.cpp +2 -2
  283. package/deps/couchbase-cxx-client/third_party/catch2/examples/030-Asn-Require-Check.cpp +5 -5
  284. package/deps/couchbase-cxx-client/third_party/catch2/examples/100-Fix-Section.cpp +5 -4
  285. package/deps/couchbase-cxx-client/third_party/catch2/examples/110-Fix-ClassFixture.cpp +7 -4
  286. package/deps/couchbase-cxx-client/third_party/catch2/examples/120-Bdd-ScenarioGivenWhenThen.cpp +4 -4
  287. package/deps/couchbase-cxx-client/third_party/catch2/examples/210-Evt-EventListeners.cpp +51 -44
  288. package/deps/couchbase-cxx-client/third_party/catch2/examples/231-Cfg-OutputStreams.cpp +3 -4
  289. package/deps/couchbase-cxx-client/third_party/catch2/examples/300-Gen-OwnGenerator.cpp +13 -3
  290. package/deps/couchbase-cxx-client/third_party/catch2/examples/301-Gen-MapTypeConversion.cpp +9 -7
  291. package/deps/couchbase-cxx-client/third_party/catch2/examples/302-Gen-Table.cpp +4 -3
  292. package/deps/couchbase-cxx-client/third_party/catch2/examples/310-Gen-VariablesInGenerators.cpp +3 -1
  293. package/deps/couchbase-cxx-client/third_party/catch2/examples/311-Gen-CustomCapture.cpp +3 -1
  294. package/deps/couchbase-cxx-client/third_party/catch2/examples/CMakeLists.txt +29 -126
  295. package/deps/couchbase-cxx-client/third_party/catch2/extras/Catch.cmake +279 -0
  296. package/deps/couchbase-cxx-client/third_party/catch2/extras/CatchAddTests.cmake +187 -0
  297. package/deps/couchbase-cxx-client/third_party/catch2/extras/CatchShardTests.cmake +74 -0
  298. package/deps/couchbase-cxx-client/third_party/catch2/extras/CatchShardTestsImpl.cmake +52 -0
  299. package/deps/couchbase-cxx-client/third_party/catch2/extras/catch_amalgamated.cpp +10655 -0
  300. package/deps/couchbase-cxx-client/third_party/catch2/extras/catch_amalgamated.hpp +12972 -0
  301. package/deps/couchbase-cxx-client/third_party/catch2/fuzzing/CMakeLists.txt +20 -0
  302. package/deps/couchbase-cxx-client/third_party/catch2/fuzzing/NullOStream.cpp +10 -0
  303. package/deps/couchbase-cxx-client/third_party/catch2/fuzzing/NullOStream.h +20 -0
  304. package/deps/couchbase-cxx-client/third_party/catch2/fuzzing/build_fuzzers.sh +33 -0
  305. package/deps/couchbase-cxx-client/third_party/catch2/fuzzing/fuzz_TestSpecParser.cpp +16 -0
  306. package/deps/couchbase-cxx-client/third_party/catch2/fuzzing/fuzz_XmlWriter.cpp +16 -0
  307. package/deps/couchbase-cxx-client/third_party/catch2/fuzzing/fuzz_textflow.cpp +47 -0
  308. package/deps/couchbase-cxx-client/third_party/catch2/mdsnippets.json +9 -0
  309. package/deps/couchbase-cxx-client/third_party/catch2/meson.build +17 -0
  310. package/deps/couchbase-cxx-client/third_party/catch2/src/CMakeLists.txt +510 -0
  311. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/catch_benchmark.hpp +147 -0
  312. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/catch_benchmark_all.hpp +46 -0
  313. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/catch_chronometer.cpp +17 -0
  314. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/catch_chronometer.hpp +74 -0
  315. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/catch_clock.hpp +39 -0
  316. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/catch_constructor.hpp +82 -0
  317. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/catch_environment.hpp +37 -0
  318. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/catch_estimate.hpp +30 -0
  319. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/catch_execution_plan.hpp +58 -0
  320. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/catch_optimizer.hpp +78 -0
  321. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/catch_outlier_classification.hpp +29 -0
  322. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/catch_sample_analysis.hpp +49 -0
  323. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/detail/catch_analyse.hpp +79 -0
  324. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/detail/catch_benchmark_function.cpp +17 -0
  325. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/detail/catch_benchmark_function.hpp +107 -0
  326. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/detail/catch_benchmark_stats.hpp +64 -0
  327. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/detail/catch_benchmark_stats_fwd.hpp +23 -0
  328. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/detail/catch_complete_invoke.hpp +58 -0
  329. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/detail/catch_estimate_clock.hpp +121 -0
  330. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/detail/catch_measure.hpp +32 -0
  331. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/detail/catch_repeat.hpp +36 -0
  332. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/detail/catch_run_for_at_least.cpp +31 -0
  333. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/detail/catch_run_for_at_least.hpp +65 -0
  334. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/detail/catch_stats.cpp +257 -0
  335. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/detail/catch_stats.hpp +144 -0
  336. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/detail/catch_timing.hpp +31 -0
  337. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_all.hpp +127 -0
  338. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_approx.cpp +85 -0
  339. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_approx.hpp +128 -0
  340. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_assertion_info.hpp +28 -0
  341. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_assertion_result.cpp +105 -0
  342. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_assertion_result.hpp +60 -0
  343. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_config.cpp +247 -0
  344. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_config.hpp +153 -0
  345. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_get_random_seed.cpp +18 -0
  346. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_get_random_seed.hpp +18 -0
  347. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_message.cpp +116 -0
  348. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_message.hpp +148 -0
  349. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_registry_hub.cpp +105 -0
  350. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_section_info.hpp +42 -0
  351. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_session.cpp +363 -0
  352. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_session.hpp +62 -0
  353. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_tag_alias.hpp +29 -0
  354. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_tag_alias_autoregistrar.cpp +24 -0
  355. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_tag_alias_autoregistrar.hpp +29 -0
  356. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_template_test_macros.hpp +124 -0
  357. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_test_case_info.cpp +247 -0
  358. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_test_case_info.hpp +131 -0
  359. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_test_macros.hpp +226 -0
  360. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_test_spec.cpp +138 -0
  361. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_test_spec.hpp +119 -0
  362. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_timer.cpp +37 -0
  363. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_timer.hpp +27 -0
  364. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_tostring.cpp +254 -0
  365. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_tostring.hpp +668 -0
  366. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_totals.cpp +65 -0
  367. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_totals.hpp +41 -0
  368. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_translate_exception.cpp +20 -0
  369. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_translate_exception.hpp +88 -0
  370. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_user_config.hpp.in +210 -0
  371. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_version.cpp +43 -0
  372. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_version.hpp +39 -0
  373. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_version_macros.hpp +15 -0
  374. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/generators/catch_generator_exception.cpp +17 -0
  375. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/generators/catch_generator_exception.hpp +31 -0
  376. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/generators/catch_generators.cpp +42 -0
  377. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/generators/catch_generators.hpp +250 -0
  378. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/generators/catch_generators_adapters.hpp +241 -0
  379. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/generators/catch_generators_all.hpp +30 -0
  380. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/generators/catch_generators_random.cpp +13 -0
  381. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/generators/catch_generators_random.hpp +98 -0
  382. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/generators/catch_generators_range.hpp +110 -0
  383. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/interfaces/catch_interfaces_all.hpp +37 -0
  384. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/interfaces/catch_interfaces_capture.cpp +13 -0
  385. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/interfaces/catch_interfaces_capture.hpp +109 -0
  386. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/interfaces/catch_interfaces_config.cpp +13 -0
  387. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/interfaces/catch_interfaces_config.hpp +100 -0
  388. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/interfaces/catch_interfaces_enum_values_registry.hpp +47 -0
  389. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/interfaces/catch_interfaces_exception.cpp +14 -0
  390. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/interfaces/catch_interfaces_exception.hpp +36 -0
  391. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/interfaces/catch_interfaces_generatortracker.cpp +32 -0
  392. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/interfaces/catch_interfaces_generatortracker.hpp +90 -0
  393. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/interfaces/catch_interfaces_registry_hub.cpp +14 -0
  394. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/interfaces/catch_interfaces_registry_hub.hpp +66 -0
  395. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/interfaces/catch_interfaces_reporter.cpp +101 -0
  396. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/interfaces/catch_interfaces_reporter.hpp +224 -0
  397. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/interfaces/catch_interfaces_reporter_factory.cpp +14 -0
  398. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/interfaces/catch_interfaces_reporter_factory.hpp +45 -0
  399. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/interfaces/catch_interfaces_tag_alias_registry.hpp +29 -0
  400. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/interfaces/catch_interfaces_test_invoker.hpp +21 -0
  401. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/interfaces/catch_interfaces_testcase.cpp +13 -0
  402. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/interfaces/catch_interfaces_testcase.hpp +36 -0
  403. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_assertion_handler.cpp +82 -0
  404. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_assertion_handler.hpp +68 -0
  405. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_case_insensitive_comparisons.cpp +35 -0
  406. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_case_insensitive_comparisons.hpp +30 -0
  407. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_case_sensitive.hpp +17 -0
  408. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_clara.cpp +448 -0
  409. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_clara.hpp +702 -0
  410. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_commandline.cpp +313 -0
  411. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_commandline.hpp +21 -0
  412. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_compare_traits.hpp +75 -0
  413. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_compiler_capabilities.hpp +430 -0
  414. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_config_android_logwrite.hpp +33 -0
  415. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_config_counter.hpp +32 -0
  416. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_config_uncaught_exceptions.hpp +44 -0
  417. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_config_wchar.hpp +33 -0
  418. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_console_colour.cpp +282 -0
  419. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_console_colour.hpp +141 -0
  420. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_console_width.hpp +19 -0
  421. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_container_nonmembers.hpp +73 -0
  422. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_context.cpp +41 -0
  423. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_context.hpp +51 -0
  424. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_debug_console.cpp +45 -0
  425. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_debug_console.hpp +17 -0
  426. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_debugger.cpp +120 -0
  427. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_debugger.hpp +67 -0
  428. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_decomposer.cpp +23 -0
  429. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_decomposer.hpp +340 -0
  430. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_enforce.cpp +41 -0
  431. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_enforce.hpp +54 -0
  432. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_enum_values_registry.cpp +73 -0
  433. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_enum_values_registry.hpp +36 -0
  434. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_errno_guard.cpp +16 -0
  435. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_errno_guard.hpp +27 -0
  436. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_exception_translator_registry.cpp +84 -0
  437. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_exception_translator_registry.hpp +30 -0
  438. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_fatal_condition_handler.cpp +243 -0
  439. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_fatal_condition_handler.hpp +69 -0
  440. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_floating_point_helpers.cpp +32 -0
  441. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_floating_point_helpers.hpp +103 -0
  442. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_getenv.cpp +37 -0
  443. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_getenv.hpp +20 -0
  444. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_is_permutation.hpp +138 -0
  445. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_istream.cpp +159 -0
  446. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_istream.hpp +54 -0
  447. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_lazy_expr.cpp +29 -0
  448. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_lazy_expr.hpp +40 -0
  449. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_leak_detector.cpp +38 -0
  450. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_leak_detector.hpp +19 -0
  451. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_list.cpp +123 -0
  452. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_list.hpp +43 -0
  453. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_logical_traits.hpp +44 -0
  454. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_main.cpp +39 -0
  455. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_message_info.cpp +25 -0
  456. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_message_info.hpp +42 -0
  457. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_meta.hpp +47 -0
  458. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_move_and_forward.hpp +19 -0
  459. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_noncopyable.hpp +28 -0
  460. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_optional.hpp +100 -0
  461. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_output_redirect.cpp +146 -0
  462. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_output_redirect.hpp +118 -0
  463. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_parse_numbers.cpp +52 -0
  464. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_parse_numbers.hpp +26 -0
  465. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_platform.hpp +37 -0
  466. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_polyfills.cpp +34 -0
  467. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_polyfills.hpp +16 -0
  468. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_preprocessor.hpp +237 -0
  469. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_preprocessor_remove_parens.hpp +19 -0
  470. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_random_number_generator.cpp +70 -0
  471. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_random_number_generator.hpp +59 -0
  472. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_random_seed_generation.cpp +34 -0
  473. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_random_seed_generation.hpp +26 -0
  474. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_reporter_registry.cpp +88 -0
  475. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_reporter_registry.hpp +55 -0
  476. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_reporter_spec_parser.cpp +173 -0
  477. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_reporter_spec_parser.hpp +85 -0
  478. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_result_type.cpp +26 -0
  479. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_result_type.hpp +57 -0
  480. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_reusable_string_stream.cpp +62 -0
  481. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_reusable_string_stream.hpp +57 -0
  482. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_run_context.cpp +688 -0
  483. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_run_context.hpp +160 -0
  484. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_section.cpp +60 -0
  485. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_section.hpp +53 -0
  486. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_sharding.hpp +42 -0
  487. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_singletons.cpp +36 -0
  488. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_singletons.hpp +45 -0
  489. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_source_line_info.cpp +33 -0
  490. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_source_line_info.hpp +37 -0
  491. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_startup_exception_registry.cpp +29 -0
  492. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_startup_exception_registry.hpp +29 -0
  493. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_stdstreams.cpp +24 -0
  494. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_stdstreams.hpp +22 -0
  495. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_stream_end_stop.hpp +30 -0
  496. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_string_manip.cpp +104 -0
  497. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_string_manip.hpp +61 -0
  498. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_stringref.cpp +66 -0
  499. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_stringref.hpp +121 -0
  500. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_tag_alias_registry.cpp +55 -0
  501. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_tag_alias_registry.hpp +33 -0
  502. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_template_test_registry.hpp +337 -0
  503. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_test_case_info_hasher.cpp +39 -0
  504. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_test_case_info_hasher.hpp +29 -0
  505. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_test_case_registry_impl.cpp +146 -0
  506. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_test_case_registry_impl.hpp +62 -0
  507. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_test_case_tracker.cpp +239 -0
  508. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_test_case_tracker.hpp +244 -0
  509. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_test_failure_exception.cpp +31 -0
  510. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_test_failure_exception.hpp +34 -0
  511. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_test_macro_impl.hpp +159 -0
  512. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_test_registry.cpp +82 -0
  513. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_test_registry.hpp +132 -0
  514. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_test_run_info.hpp +22 -0
  515. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_test_spec_parser.cpp +239 -0
  516. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_test_spec_parser.hpp +81 -0
  517. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_textflow.cpp +255 -0
  518. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_textflow.hpp +169 -0
  519. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_to_string.hpp +29 -0
  520. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_uncaught_exceptions.cpp +26 -0
  521. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_uncaught_exceptions.hpp +15 -0
  522. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_unique_name.hpp +20 -0
  523. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_unique_ptr.hpp +118 -0
  524. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_void_type.hpp +25 -0
  525. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_wildcard_pattern.cpp +47 -0
  526. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_wildcard_pattern.hpp +38 -0
  527. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_windows_h_proxy.hpp +28 -0
  528. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_xmlwriter.cpp +348 -0
  529. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_xmlwriter.hpp +152 -0
  530. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/catch_matchers.cpp +25 -0
  531. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/catch_matchers.hpp +237 -0
  532. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/catch_matchers_all.hpp +36 -0
  533. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/catch_matchers_container_properties.cpp +34 -0
  534. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/catch_matchers_container_properties.hpp +90 -0
  535. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/catch_matchers_contains.hpp +102 -0
  536. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/catch_matchers_exception.cpp +26 -0
  537. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/catch_matchers_exception.hpp +61 -0
  538. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/catch_matchers_floating_point.cpp +241 -0
  539. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/catch_matchers_floating_point.hpp +94 -0
  540. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/catch_matchers_predicate.cpp +17 -0
  541. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/catch_matchers_predicate.hpp +59 -0
  542. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/catch_matchers_quantifiers.cpp +24 -0
  543. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/catch_matchers_quantifiers.hpp +165 -0
  544. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/catch_matchers_range_equals.hpp +144 -0
  545. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/catch_matchers_string.cpp +114 -0
  546. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/catch_matchers_string.hpp +85 -0
  547. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/catch_matchers_templated.cpp +41 -0
  548. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/catch_matchers_templated.hpp +296 -0
  549. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/catch_matchers_vector.hpp +194 -0
  550. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/internal/catch_matchers_impl.cpp +25 -0
  551. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/internal/catch_matchers_impl.hpp +83 -0
  552. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/meson.build +368 -0
  553. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_automake.cpp +37 -0
  554. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_automake.hpp +38 -0
  555. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_common_base.cpp +49 -0
  556. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_common_base.hpp +79 -0
  557. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_compact.cpp +254 -0
  558. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_compact.hpp +39 -0
  559. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_console.cpp +656 -0
  560. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_console.hpp +67 -0
  561. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_cumulative_base.cpp +159 -0
  562. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_cumulative_base.hpp +151 -0
  563. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_event_listener.cpp +40 -0
  564. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_event_listener.hpp +60 -0
  565. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_helpers.cpp +343 -0
  566. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_helpers.hpp +95 -0
  567. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_junit.cpp +309 -0
  568. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_junit.hpp +58 -0
  569. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_multi.cpp +197 -0
  570. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_multi.hpp +72 -0
  571. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_registrars.cpp +36 -0
  572. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_registrars.hpp +131 -0
  573. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_sonarqube.cpp +162 -0
  574. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_sonarqube.hpp +61 -0
  575. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_streaming_base.cpp +23 -0
  576. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_streaming_base.hpp +73 -0
  577. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_tap.cpp +229 -0
  578. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_tap.hpp +43 -0
  579. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_teamcity.cpp +177 -0
  580. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_teamcity.hpp +66 -0
  581. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_xml.cpp +336 -0
  582. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_xml.hpp +66 -0
  583. package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporters_all.hpp +40 -0
  584. package/deps/couchbase-cxx-client/third_party/catch2/tests/CMakeLists.txt +665 -0
  585. package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/CMakeLists.txt +554 -0
  586. package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/ToDo.txt +10 -0
  587. package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X01-PrefixedMacros.cpp +97 -0
  588. package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X02-DisabledMacros.cpp +65 -0
  589. package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X03-DisabledExceptions-DefaultHandler.cpp +39 -0
  590. package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X04-DisabledExceptions-CustomHandler.cpp +40 -0
  591. package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X05-DeferredStaticChecks.cpp +21 -0
  592. package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X10-FallbackStringifier.cpp +35 -0
  593. package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X11-DisableStringification.cpp +27 -0
  594. package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X12-CustomDebugBreakMacro.cpp +26 -0
  595. package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X21-PartialTestCaseEvents.cpp +74 -0
  596. package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X22-BenchmarksInCumulativeReporter.cpp +79 -0
  597. package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X23-CasingInReporterNames.cpp +41 -0
  598. package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X24-ListenerStdoutCaptureInMultireporter.cpp +40 -0
  599. package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X25-ListenerCanAskForCapturedStdout.cpp +47 -0
  600. package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X26-ReporterPreferencesForPassingAssertionsIsRespected.cpp +52 -0
  601. package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X27-CapturedStdoutInTestCaseEvents.cpp +82 -0
  602. package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X28-ListenersGetEventsBeforeReporters.cpp +99 -0
  603. package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X29-CustomArgumentsForReporters.cpp +59 -0
  604. package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X30-BazelReporter.cpp +17 -0
  605. package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X31-DuplicatedTestCases.cpp +16 -0
  606. package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X32-DuplicatedTestCasesDifferentTags.cpp +17 -0
  607. package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X33-DuplicatedTestCaseMethods.cpp +22 -0
  608. package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X34-DuplicatedTestCaseMethodsDifferentFixtures.cpp +27 -0
  609. package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X35-DuplicatedReporterNames.cpp +31 -0
  610. package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X90-WindowsHeaderInclusion.cpp +21 -0
  611. package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X91-AmalgamatedCatch.cpp +38 -0
  612. package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X92-NoTests.cpp +11 -0
  613. package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X93-AllSkipped.cpp +16 -0
  614. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/Baselines/automake.sw.approved.txt +420 -0
  615. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/Baselines/automake.sw.multi.approved.txt +409 -0
  616. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/Baselines/compact.sw.approved.txt +2544 -0
  617. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/Baselines/compact.sw.multi.approved.txt +2533 -0
  618. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/Baselines/console.std.approved.txt +1538 -0
  619. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/Baselines/console.sw.approved.txt +18236 -0
  620. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/Baselines/console.sw.multi.approved.txt +18225 -0
  621. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/Baselines/console.swa4.approved.txt +956 -0
  622. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/Baselines/default.sw.multi.approved.txt +11 -0
  623. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/Baselines/junit.sw.approved.txt +2052 -0
  624. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/Baselines/junit.sw.multi.approved.txt +2051 -0
  625. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/Baselines/sonarqube.sw.approved.txt +2071 -0
  626. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/Baselines/sonarqube.sw.multi.approved.txt +2070 -0
  627. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/Baselines/tap.sw.approved.txt +4481 -0
  628. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/Baselines/tap.sw.multi.approved.txt +4470 -0
  629. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/Baselines/teamcity.sw.approved.txt +998 -0
  630. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/Baselines/teamcity.sw.multi.approved.txt +997 -0
  631. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/Baselines/xml.sw.approved.txt +21208 -0
  632. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/Baselines/xml.sw.multi.approved.txt +21207 -0
  633. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/Algorithms.tests.cpp +94 -0
  634. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/Clara.tests.cpp +73 -0
  635. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/CmdLine.tests.cpp +467 -0
  636. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/CmdLineHelpers.tests.cpp +111 -0
  637. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/ColourImpl.tests.cpp +64 -0
  638. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/Details.tests.cpp +131 -0
  639. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/FloatingPoint.tests.cpp +74 -0
  640. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/GeneratorsImpl.tests.cpp +546 -0
  641. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/InternalBenchmark.tests.cpp +447 -0
  642. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/Parse.tests.cpp +38 -0
  643. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/PartTracker.tests.cpp +254 -0
  644. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/RandomNumberGeneration.tests.cpp +62 -0
  645. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/Reporters.tests.cpp +328 -0
  646. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/Sharding.tests.cpp +45 -0
  647. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/Stream.tests.cpp +32 -0
  648. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/String.tests.cpp +212 -0
  649. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/StringManip.tests.cpp +83 -0
  650. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/Tag.tests.cpp +104 -0
  651. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/TestCaseInfoHasher.tests.cpp +72 -0
  652. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/TestSpec.tests.cpp +365 -0
  653. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/TestSpecParser.tests.cpp +55 -0
  654. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/TextFlow.tests.cpp +200 -0
  655. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/ToString.tests.cpp +97 -0
  656. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/Traits.tests.cpp +45 -0
  657. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/UniquePtr.tests.cpp +141 -0
  658. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/Xml.tests.cpp +183 -0
  659. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/TestRegistrations.cpp +181 -0
  660. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/TimingTests/Sleep.tests.cpp +24 -0
  661. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/Approx.tests.cpp +218 -0
  662. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/BDD.tests.cpp +106 -0
  663. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/Benchmark.tests.cpp +173 -0
  664. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/Class.tests.cpp +133 -0
  665. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/Compilation.tests.cpp +355 -0
  666. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/Condition.tests.cpp +334 -0
  667. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/Decomposition.tests.cpp +41 -0
  668. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/EnumToString.tests.cpp +108 -0
  669. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/Exception.tests.cpp +204 -0
  670. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/Generators.tests.cpp +313 -0
  671. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/Matchers.tests.cpp +1144 -0
  672. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/MatchersRanges.tests.cpp +917 -0
  673. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/Message.tests.cpp +287 -0
  674. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/Misc.tests.cpp +553 -0
  675. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/Skip.tests.cpp +73 -0
  676. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/ToStringByte.tests.cpp +23 -0
  677. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/ToStringChrono.tests.cpp +51 -0
  678. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/ToStringGeneral.tests.cpp +211 -0
  679. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/ToStringOptional.tests.cpp +31 -0
  680. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/ToStringPair.tests.cpp +38 -0
  681. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/ToStringTuple.tests.cpp +54 -0
  682. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/ToStringVariant.tests.cpp +99 -0
  683. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/ToStringVector.tests.cpp +94 -0
  684. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/ToStringWhich.tests.cpp +186 -0
  685. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/Tricky.tests.cpp +380 -0
  686. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/VariadicMacros.tests.cpp +29 -0
  687. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/helpers/parse_test_spec.cpp +22 -0
  688. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/helpers/parse_test_spec.hpp +20 -0
  689. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/helpers/range_test_helpers.hpp +210 -0
  690. package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/helpers/type_with_lit_0_comparisons.hpp +44 -0
  691. package/deps/couchbase-cxx-client/third_party/catch2/tests/TestScripts/ConfigureTestsCommon.py +75 -0
  692. package/deps/couchbase-cxx-client/third_party/catch2/tests/TestScripts/testBazelReporter.py +104 -0
  693. package/deps/couchbase-cxx-client/third_party/catch2/tests/TestScripts/testBazelSharding.py +75 -0
  694. package/deps/couchbase-cxx-client/third_party/catch2/tests/TestScripts/testConfigureDefaultReporter.py +41 -0
  695. package/deps/couchbase-cxx-client/third_party/catch2/tests/TestScripts/testConfigureDisable.py +48 -0
  696. package/deps/couchbase-cxx-client/third_party/catch2/tests/TestScripts/testConfigureDisableStringification.py +44 -0
  697. package/deps/couchbase-cxx-client/third_party/catch2/tests/TestScripts/testConfigureExperimentalRedirect.py +49 -0
  698. package/deps/couchbase-cxx-client/third_party/catch2/tests/TestScripts/testPartialTestCaseEvent.py +79 -0
  699. package/deps/couchbase-cxx-client/third_party/catch2/tests/TestScripts/testRandomOrder.py +77 -0
  700. package/deps/couchbase-cxx-client/third_party/catch2/tests/TestScripts/testSharding.py +165 -0
  701. package/deps/couchbase-cxx-client/third_party/catch2/tests/meson.build +76 -0
  702. package/deps/couchbase-cxx-client/third_party/catch2/tools/misc/appveyorBuildConfigurationScript.bat +21 -0
  703. package/deps/couchbase-cxx-client/third_party/catch2/tools/misc/appveyorMergeCoverageScript.py +9 -0
  704. package/deps/couchbase-cxx-client/third_party/catch2/tools/misc/appveyorTestRunScript.bat +17 -0
  705. package/deps/couchbase-cxx-client/third_party/catch2/tools/misc/coverage-helper.cpp +142 -0
  706. package/deps/couchbase-cxx-client/third_party/catch2/tools/misc/installOpenCppCoverage.ps1 +19 -0
  707. package/deps/couchbase-cxx-client/third_party/catch2/tools/scripts/approvalTests.py +243 -0
  708. package/deps/couchbase-cxx-client/third_party/catch2/tools/scripts/approve.py +31 -0
  709. package/deps/couchbase-cxx-client/third_party/catch2/tools/scripts/buildAndTest.cmd +17 -0
  710. package/deps/couchbase-cxx-client/third_party/catch2/tools/scripts/buildAndTest.sh +19 -0
  711. package/deps/couchbase-cxx-client/third_party/catch2/tools/scripts/checkConvenienceHeaders.py +151 -0
  712. package/deps/couchbase-cxx-client/third_party/catch2/tools/scripts/checkDuplicateFilenames.py +14 -0
  713. package/deps/couchbase-cxx-client/third_party/catch2/tools/scripts/checkLicense.py +45 -0
  714. package/deps/couchbase-cxx-client/third_party/catch2/tools/scripts/developBuild.py +9 -0
  715. package/deps/couchbase-cxx-client/third_party/catch2/tools/scripts/extractFeaturesFromReleaseNotes.py +92 -0
  716. package/deps/couchbase-cxx-client/third_party/catch2/tools/scripts/fixWhitespace.py +51 -0
  717. package/deps/couchbase-cxx-client/third_party/catch2/tools/scripts/generateAmalgamatedFiles.py +129 -0
  718. package/deps/couchbase-cxx-client/third_party/catch2/tools/scripts/majorRelease.py +9 -0
  719. package/deps/couchbase-cxx-client/third_party/catch2/tools/scripts/minorRelease.py +9 -0
  720. package/deps/couchbase-cxx-client/third_party/catch2/tools/scripts/patchRelease.py +9 -0
  721. package/deps/couchbase-cxx-client/third_party/catch2/tools/scripts/releaseCommon.py +143 -0
  722. package/deps/couchbase-cxx-client/third_party/catch2/tools/scripts/scriptCommon.py +4 -0
  723. package/deps/couchbase-cxx-client/third_party/catch2/tools/scripts/updateDocumentSnippets.py +23 -0
  724. package/deps/couchbase-cxx-client/third_party/catch2/tools/scripts/updateDocumentToC.py +447 -0
  725. package/deps/couchbase-cxx-client/third_party/snappy/.github/workflows/build.yml +135 -0
  726. package/deps/couchbase-cxx-client/third_party/snappy/.gitmodules +6 -0
  727. package/deps/couchbase-cxx-client/third_party/snappy/CMakeLists.txt +150 -27
  728. package/deps/couchbase-cxx-client/third_party/snappy/CONTRIBUTING.md +9 -4
  729. package/deps/couchbase-cxx-client/third_party/snappy/NEWS +12 -0
  730. package/deps/couchbase-cxx-client/third_party/snappy/README.md +52 -35
  731. package/deps/couchbase-cxx-client/third_party/snappy/cmake/config.h.in +28 -24
  732. package/deps/couchbase-cxx-client/third_party/snappy/snappy-internal.h +189 -25
  733. package/deps/couchbase-cxx-client/third_party/snappy/snappy-sinksource.cc +26 -9
  734. package/deps/couchbase-cxx-client/third_party/snappy/snappy-sinksource.h +11 -11
  735. package/deps/couchbase-cxx-client/third_party/snappy/snappy-stubs-internal.cc +1 -1
  736. package/deps/couchbase-cxx-client/third_party/snappy/snappy-stubs-internal.h +227 -308
  737. package/deps/couchbase-cxx-client/third_party/snappy/snappy-stubs-public.h.in +0 -11
  738. package/deps/couchbase-cxx-client/third_party/snappy/snappy-test.cc +88 -198
  739. package/deps/couchbase-cxx-client/third_party/snappy/snappy-test.h +102 -285
  740. package/deps/couchbase-cxx-client/third_party/snappy/snappy.cc +1176 -410
  741. package/deps/couchbase-cxx-client/third_party/snappy/snappy.h +19 -4
  742. package/deps/couchbase-cxx-client/third_party/snappy/snappy_benchmark.cc +378 -0
  743. package/deps/couchbase-cxx-client/third_party/snappy/snappy_compress_fuzzer.cc +3 -2
  744. package/deps/couchbase-cxx-client/third_party/snappy/snappy_test_data.cc +57 -0
  745. package/deps/couchbase-cxx-client/third_party/snappy/snappy_test_data.h +68 -0
  746. package/deps/couchbase-cxx-client/third_party/snappy/snappy_test_tool.cc +471 -0
  747. package/deps/couchbase-cxx-client/third_party/snappy/snappy_uncompress_fuzzer.cc +3 -2
  748. package/deps/couchbase-cxx-client/third_party/snappy/snappy_unittest.cc +170 -666
  749. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/.github/ISSUE_TEMPLATE/bug_report.md +32 -0
  750. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
  751. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/.github/workflows/build-and-test.yml +38 -0
  752. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/.github/workflows/pylint.yml +26 -0
  753. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/.github/workflows/test_bindings.yml +24 -0
  754. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/.travis-libcxx-setup.sh +28 -0
  755. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/.travis.yml +231 -0
  756. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/.ycm_extra_conf.py +115 -0
  757. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/AUTHORS +58 -0
  758. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/BUILD.bazel +44 -0
  759. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/CMakeLists.txt +287 -0
  760. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/CONTRIBUTING.md +58 -0
  761. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/CONTRIBUTORS +83 -0
  762. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/LICENSE +202 -0
  763. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/README.md +1323 -0
  764. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/WORKSPACE +51 -0
  765. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/_config.yml +1 -0
  766. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/appveyor.yml +50 -0
  767. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/bindings/python/BUILD +3 -0
  768. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/bindings/python/build_defs.bzl +25 -0
  769. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/bindings/python/google_benchmark/BUILD +38 -0
  770. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/bindings/python/google_benchmark/__init__.py +156 -0
  771. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/bindings/python/google_benchmark/benchmark.cc +180 -0
  772. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/bindings/python/google_benchmark/example.py +136 -0
  773. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/bindings/python/pybind11.BUILD +20 -0
  774. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/bindings/python/python_headers.BUILD +6 -0
  775. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/bindings/python/requirements.txt +2 -0
  776. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/cmake/AddCXXCompilerFlag.cmake +74 -0
  777. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/cmake/CXXFeatureCheck.cmake +69 -0
  778. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/cmake/Config.cmake.in +1 -0
  779. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/cmake/GetGitVersion.cmake +54 -0
  780. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/cmake/GoogleTest.cmake +41 -0
  781. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/cmake/GoogleTest.cmake.in +58 -0
  782. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/cmake/benchmark.pc.in +12 -0
  783. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/cmake/gnu_posix_regex.cpp +12 -0
  784. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/cmake/llvm-toolchain.cmake +8 -0
  785. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/cmake/posix_regex.cpp +14 -0
  786. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/cmake/split_list.cmake +3 -0
  787. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/cmake/std_regex.cpp +10 -0
  788. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/cmake/steady_clock.cpp +7 -0
  789. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/cmake/thread_safety_attributes.cpp +4 -0
  790. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/conan/CMakeLists.txt +7 -0
  791. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/conan/test_package/CMakeLists.txt +10 -0
  792. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/conan/test_package/conanfile.py +19 -0
  793. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/conan/test_package/test_package.cpp +18 -0
  794. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/conanfile.py +79 -0
  795. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/dependencies.md +18 -0
  796. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/docs/AssemblyTests.md +147 -0
  797. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/docs/_config.yml +1 -0
  798. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/docs/releasing.md +16 -0
  799. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/docs/tools.md +203 -0
  800. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/include/benchmark/benchmark.h +1604 -0
  801. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/requirements.txt +2 -0
  802. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/setup.py +140 -0
  803. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/CMakeLists.txt +114 -0
  804. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/arraysize.h +33 -0
  805. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/benchmark.cc +499 -0
  806. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/benchmark_api_internal.cc +15 -0
  807. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/benchmark_api_internal.h +53 -0
  808. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/benchmark_main.cc +17 -0
  809. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/benchmark_name.cc +58 -0
  810. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/benchmark_register.cc +515 -0
  811. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/benchmark_register.h +108 -0
  812. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/benchmark_runner.cc +362 -0
  813. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/benchmark_runner.h +51 -0
  814. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/check.h +82 -0
  815. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/colorprint.cc +188 -0
  816. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/colorprint.h +33 -0
  817. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/commandlineflags.cc +228 -0
  818. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/commandlineflags.h +103 -0
  819. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/complexity.cc +238 -0
  820. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/complexity.h +55 -0
  821. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/console_reporter.cc +177 -0
  822. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/counter.cc +80 -0
  823. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/counter.h +32 -0
  824. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/csv_reporter.cc +154 -0
  825. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/cycleclock.h +211 -0
  826. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/internal_macros.h +102 -0
  827. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/json_reporter.cc +255 -0
  828. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/log.h +74 -0
  829. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/mutex.h +155 -0
  830. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/re.h +158 -0
  831. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/reporter.cc +105 -0
  832. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/sleep.cc +67 -0
  833. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/sleep.h +15 -0
  834. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/statistics.cc +193 -0
  835. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/statistics.h +37 -0
  836. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/string_util.cc +255 -0
  837. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/string_util.h +59 -0
  838. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/sysinfo.cc +716 -0
  839. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/thread_manager.h +64 -0
  840. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/thread_timer.h +86 -0
  841. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/timers.cc +245 -0
  842. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/timers.h +48 -0
  843. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/AssemblyTests.cmake +46 -0
  844. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/BUILD +73 -0
  845. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/CMakeLists.txt +263 -0
  846. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/args_product_test.cc +77 -0
  847. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/basic_test.cc +136 -0
  848. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/benchmark_gtest.cc +134 -0
  849. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/benchmark_name_gtest.cc +74 -0
  850. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/benchmark_test.cc +245 -0
  851. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/clobber_memory_assembly_test.cc +64 -0
  852. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/commandlineflags_gtest.cc +201 -0
  853. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/complexity_test.cc +213 -0
  854. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/cxx03_test.cc +63 -0
  855. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/diagnostics_test.cc +80 -0
  856. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/display_aggregates_only_test.cc +43 -0
  857. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/donotoptimize_assembly_test.cc +163 -0
  858. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/donotoptimize_test.cc +52 -0
  859. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/filter_test.cc +104 -0
  860. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/fixture_test.cc +51 -0
  861. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/internal_threading_test.cc +184 -0
  862. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/link_main_test.cc +8 -0
  863. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/map_test.cc +57 -0
  864. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/memory_manager_test.cc +44 -0
  865. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/multiple_ranges_test.cc +96 -0
  866. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/options_test.cc +75 -0
  867. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/output_test.h +213 -0
  868. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/output_test_helper.cc +515 -0
  869. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/register_benchmark_test.cc +184 -0
  870. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/report_aggregates_only_test.cc +39 -0
  871. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/reporter_output_test.cc +747 -0
  872. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/skip_with_error_test.cc +195 -0
  873. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/state_assembly_test.cc +68 -0
  874. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/statistics_gtest.cc +28 -0
  875. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/string_util_gtest.cc +153 -0
  876. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/templated_fixture_test.cc +28 -0
  877. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/user_counters_tabular_test.cc +285 -0
  878. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/user_counters_test.cc +531 -0
  879. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/user_counters_thousands_test.cc +173 -0
  880. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/tools/BUILD.bazel +19 -0
  881. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/tools/compare.py +429 -0
  882. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/tools/gbench/Inputs/test1_run1.json +119 -0
  883. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/tools/gbench/Inputs/test1_run2.json +119 -0
  884. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/tools/gbench/Inputs/test2_run.json +81 -0
  885. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/tools/gbench/Inputs/test3_run0.json +65 -0
  886. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/tools/gbench/Inputs/test3_run1.json +65 -0
  887. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/tools/gbench/__init__.py +8 -0
  888. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/tools/gbench/report.py +903 -0
  889. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/tools/gbench/util.py +163 -0
  890. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/tools/requirements.txt +1 -0
  891. package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/tools/strip_asm.py +151 -0
  892. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/.travis.yml +65 -0
  893. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/BUILD.bazel +182 -0
  894. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/CMakeLists.txt +32 -0
  895. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/CONTRIBUTING.md +142 -0
  896. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/LICENSE +28 -0
  897. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/README.md +135 -0
  898. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/WORKSPACE +30 -0
  899. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/appveyor.yml +156 -0
  900. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/ci/build-linux-bazel.sh +36 -0
  901. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/ci/build-platformio.sh +2 -0
  902. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/ci/env-linux.sh +41 -0
  903. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/ci/env-osx.sh +41 -0
  904. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/ci/get-nprocessors.sh +48 -0
  905. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/ci/install-linux.sh +49 -0
  906. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/ci/install-osx.sh +39 -0
  907. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/ci/install-platformio.sh +5 -0
  908. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/ci/log-config.sh +47 -0
  909. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/ci/travis.sh +29 -0
  910. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/CMakeLists.txt +219 -0
  911. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/CONTRIBUTORS +40 -0
  912. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/LICENSE +28 -0
  913. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/README.md +44 -0
  914. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/cmake/gmock.pc.in +10 -0
  915. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/cmake/gmock_main.pc.in +10 -0
  916. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/docs/cheat_sheet.md +786 -0
  917. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/docs/community_created_documentation.md +9 -0
  918. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/docs/cook_book.md +4276 -0
  919. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/docs/for_dummies.md +702 -0
  920. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/docs/gmock_faq.md +398 -0
  921. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/docs/pump_manual.md +189 -0
  922. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/include/gmock/gmock-actions.h +1688 -0
  923. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/include/gmock/gmock-cardinalities.h +157 -0
  924. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/include/gmock/gmock-function-mocker.h +479 -0
  925. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/include/gmock/gmock-generated-actions.h +577 -0
  926. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/include/gmock/gmock-generated-actions.h.pump +390 -0
  927. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/include/gmock/gmock-matchers.h +5394 -0
  928. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/include/gmock/gmock-more-matchers.h +92 -0
  929. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/include/gmock/gmock-nice-strict.h +230 -0
  930. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/include/gmock/gmock-spec-builders.h +2030 -0
  931. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/include/gmock/gmock.h +98 -0
  932. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/include/gmock/internal/custom/README.md +16 -0
  933. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/include/gmock/internal/custom/gmock-generated-actions.h +10 -0
  934. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/include/gmock/internal/custom/gmock-generated-actions.h.pump +12 -0
  935. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/include/gmock/internal/custom/gmock-matchers.h +36 -0
  936. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/include/gmock/internal/custom/gmock-port.h +39 -0
  937. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/include/gmock/internal/gmock-internal-utils.h +459 -0
  938. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/include/gmock/internal/gmock-port.h +87 -0
  939. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/include/gmock/internal/gmock-pp.h +279 -0
  940. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/scripts/README.md +5 -0
  941. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/scripts/fuse_gmock_files.py +257 -0
  942. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/scripts/generator/LICENSE +203 -0
  943. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/scripts/generator/README +34 -0
  944. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/scripts/generator/README.cppclean +115 -0
  945. package/deps/couchbase-cxx-client/{core/CMakeLists.txt → third_party/snappy/third_party/googletest/googlemock/scripts/generator/cpp/__init__.py} +0 -0
  946. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/scripts/generator/cpp/ast.py +1772 -0
  947. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/scripts/generator/cpp/gmock_class.py +245 -0
  948. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/scripts/generator/cpp/gmock_class_test.py +552 -0
  949. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/scripts/generator/cpp/keywords.py +56 -0
  950. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/scripts/generator/cpp/tokenize.py +284 -0
  951. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/scripts/generator/cpp/utils.py +37 -0
  952. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/scripts/generator/gmock_gen.py +30 -0
  953. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/scripts/pump.py +856 -0
  954. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/src/gmock-all.cc +46 -0
  955. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/src/gmock-cardinalities.cc +155 -0
  956. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/src/gmock-internal-utils.cc +200 -0
  957. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/src/gmock-matchers.cc +459 -0
  958. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/src/gmock-spec-builders.cc +908 -0
  959. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/src/gmock.cc +213 -0
  960. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/src/gmock_main.cc +72 -0
  961. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/BUILD.bazel +111 -0
  962. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock-actions_test.cc +1583 -0
  963. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock-cardinalities_test.cc +429 -0
  964. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock-function-mocker_nc.cc +16 -0
  965. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock-function-mocker_nc_test.py +43 -0
  966. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock-function-mocker_test.cc +974 -0
  967. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock-generated-actions_test.cc +1036 -0
  968. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock-internal-utils_test.cc +720 -0
  969. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock-matchers_test.cc +8562 -0
  970. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock-more-actions_test.cc +725 -0
  971. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock-nice-strict_test.cc +500 -0
  972. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock-port_test.cc +42 -0
  973. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock-pp-string_test.cc +206 -0
  974. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock-pp_test.cc +83 -0
  975. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock-spec-builders_test.cc +2775 -0
  976. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock_all_test.cc +47 -0
  977. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock_ex_test.cc +80 -0
  978. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock_leak_test.py +104 -0
  979. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock_leak_test_.cc +99 -0
  980. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock_link2_test.cc +39 -0
  981. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock_link_test.cc +39 -0
  982. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock_link_test.h +690 -0
  983. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock_output_test.py +183 -0
  984. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock_output_test_.cc +309 -0
  985. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock_output_test_golden.txt +317 -0
  986. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock_stress_test.cc +240 -0
  987. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock_test.cc +181 -0
  988. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock_test_utils.py +108 -0
  989. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/pump_test.py +182 -0
  990. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/CMakeLists.txt +320 -0
  991. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/CONTRIBUTORS +38 -0
  992. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/LICENSE +28 -0
  993. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/README.md +262 -0
  994. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/cmake/Config.cmake.in +9 -0
  995. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/cmake/gtest.pc.in +9 -0
  996. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/cmake/gtest_main.pc.in +10 -0
  997. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/cmake/internal_utils.cmake +341 -0
  998. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/cmake/libgtest.la.in +21 -0
  999. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/docs/advanced.md +2640 -0
  1000. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/docs/faq.md +771 -0
  1001. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/docs/pkgconfig.md +150 -0
  1002. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/docs/primer.md +583 -0
  1003. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/docs/samples.md +22 -0
  1004. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/gtest-death-test.h +342 -0
  1005. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/gtest-matchers.h +756 -0
  1006. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/gtest-message.h +219 -0
  1007. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/gtest-param-test.h +512 -0
  1008. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/gtest-printers.h +903 -0
  1009. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/gtest-spi.h +238 -0
  1010. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/gtest-test-part.h +184 -0
  1011. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/gtest-typed-test.h +337 -0
  1012. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/gtest.h +2491 -0
  1013. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/gtest_pred_impl.h +359 -0
  1014. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/gtest_prod.h +61 -0
  1015. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/internal/custom/README.md +56 -0
  1016. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/internal/custom/gtest-port.h +37 -0
  1017. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/internal/custom/gtest-printers.h +42 -0
  1018. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/internal/custom/gtest.h +37 -0
  1019. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/internal/gtest-death-test-internal.h +304 -0
  1020. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/internal/gtest-filepath.h +211 -0
  1021. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/internal/gtest-internal.h +1564 -0
  1022. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/internal/gtest-param-util.h +947 -0
  1023. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/internal/gtest-port-arch.h +112 -0
  1024. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/internal/gtest-port.h +2371 -0
  1025. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/internal/gtest-string.h +175 -0
  1026. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/internal/gtest-type-util.h +187 -0
  1027. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/samples/prime_tables.h +126 -0
  1028. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/samples/sample1.cc +66 -0
  1029. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/samples/sample1.h +41 -0
  1030. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/samples/sample10_unittest.cc +139 -0
  1031. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/samples/sample1_unittest.cc +151 -0
  1032. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/samples/sample2.cc +54 -0
  1033. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/samples/sample2.h +81 -0
  1034. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/samples/sample2_unittest.cc +107 -0
  1035. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/samples/sample3-inl.h +172 -0
  1036. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/samples/sample3_unittest.cc +149 -0
  1037. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/samples/sample4.cc +54 -0
  1038. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/samples/sample4.h +53 -0
  1039. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/samples/sample4_unittest.cc +53 -0
  1040. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/samples/sample5_unittest.cc +196 -0
  1041. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/samples/sample6_unittest.cc +224 -0
  1042. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/samples/sample7_unittest.cc +117 -0
  1043. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/samples/sample8_unittest.cc +154 -0
  1044. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/samples/sample9_unittest.cc +156 -0
  1045. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/scripts/README.md +5 -0
  1046. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/scripts/common.py +83 -0
  1047. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/scripts/fuse_gtest_files.py +253 -0
  1048. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/scripts/gen_gtest_pred_impl.py +733 -0
  1049. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/scripts/gtest-config.in +274 -0
  1050. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/scripts/release_docs.py +158 -0
  1051. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/scripts/run_with_path.py +32 -0
  1052. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/scripts/upload.py +1402 -0
  1053. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/scripts/upload_gtest.py +78 -0
  1054. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/src/gtest-all.cc +48 -0
  1055. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/src/gtest-death-test.cc +1644 -0
  1056. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/src/gtest-filepath.cc +368 -0
  1057. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/src/gtest-internal-inl.h +1228 -0
  1058. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/src/gtest-matchers.cc +97 -0
  1059. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/src/gtest-port.cc +1404 -0
  1060. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/src/gtest-printers.cc +444 -0
  1061. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/src/gtest-test-part.cc +108 -0
  1062. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/src/gtest-typed-test.cc +111 -0
  1063. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/src/gtest.cc +6606 -0
  1064. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/src/gtest_main.cc +54 -0
  1065. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/BUILD.bazel +562 -0
  1066. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-break-on-failure-unittest.py +208 -0
  1067. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-break-on-failure-unittest_.cc +86 -0
  1068. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-catch-exceptions-test.py +236 -0
  1069. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-catch-exceptions-test_.cc +293 -0
  1070. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-color-test.py +127 -0
  1071. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-color-test_.cc +62 -0
  1072. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-death-test-test.cc +1542 -0
  1073. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-death-test_ex_test.cc +92 -0
  1074. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-env-var-test.py +120 -0
  1075. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-env-var-test_.cc +132 -0
  1076. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-failfast-unittest.py +410 -0
  1077. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-failfast-unittest_.cc +167 -0
  1078. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-filepath-test.cc +649 -0
  1079. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-filter-unittest.py +639 -0
  1080. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-filter-unittest_.cc +137 -0
  1081. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-json-outfiles-test.py +191 -0
  1082. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-json-output-unittest.py +804 -0
  1083. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-list-tests-unittest.py +205 -0
  1084. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-list-tests-unittest_.cc +156 -0
  1085. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-listener-test.cc +518 -0
  1086. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-message-test.cc +158 -0
  1087. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-options-test.cc +216 -0
  1088. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-output-test-golden-lin.txt +1180 -0
  1089. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-output-test.py +346 -0
  1090. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-output-test_.cc +1126 -0
  1091. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-param-test-invalid-name1-test.py +63 -0
  1092. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-param-test-invalid-name1-test_.cc +50 -0
  1093. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-param-test-invalid-name2-test.py +62 -0
  1094. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-param-test-invalid-name2-test_.cc +55 -0
  1095. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-param-test-test.cc +1119 -0
  1096. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-param-test-test.h +51 -0
  1097. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-param-test2-test.cc +61 -0
  1098. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-port-test.cc +1280 -0
  1099. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-printers-test.cc +1847 -0
  1100. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-setuptestsuite-test.py +54 -0
  1101. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-setuptestsuite-test_.cc +49 -0
  1102. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-shuffle-test.py +323 -0
  1103. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-shuffle-test_.cc +101 -0
  1104. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-test-part-test.cc +230 -0
  1105. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-throw-on-failure-test.py +168 -0
  1106. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-throw-on-failure-test_.cc +71 -0
  1107. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-uninitialized-test.py +67 -0
  1108. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-uninitialized-test_.cc +42 -0
  1109. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest-typed-test2_test.cc +44 -0
  1110. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest-typed-test_test.cc +462 -0
  1111. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest-typed-test_test.h +65 -0
  1112. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest-unittest-api_test.cc +341 -0
  1113. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_all_test.cc +46 -0
  1114. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_assert_by_exception_test.cc +116 -0
  1115. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_environment_test.cc +188 -0
  1116. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_help_test.py +171 -0
  1117. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_help_test_.cc +45 -0
  1118. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_json_test_utils.py +60 -0
  1119. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_list_output_unittest.py +286 -0
  1120. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_list_output_unittest_.cc +81 -0
  1121. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_main_unittest.cc +44 -0
  1122. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_no_test_unittest.cc +54 -0
  1123. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_pred_impl_unittest.cc +2422 -0
  1124. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_premature_exit_test.cc +126 -0
  1125. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_prod_test.cc +56 -0
  1126. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_repeat_test.cc +233 -0
  1127. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_skip_check_output_test.py +59 -0
  1128. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_skip_environment_check_output_test.py +54 -0
  1129. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_skip_in_environment_setup_test.cc +49 -0
  1130. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_skip_test.cc +55 -0
  1131. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_sole_header_test.cc +56 -0
  1132. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_stress_test.cc +248 -0
  1133. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_test_macro_stack_footprint_test.cc +89 -0
  1134. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_test_utils.py +312 -0
  1135. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_testbridge_test.py +63 -0
  1136. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_testbridge_test_.cc +43 -0
  1137. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_throw_on_failure_ex_test.cc +90 -0
  1138. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_unittest.cc +7792 -0
  1139. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_xml_outfile1_test_.cc +43 -0
  1140. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_xml_outfile2_test_.cc +43 -0
  1141. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_xml_outfiles_test.py +135 -0
  1142. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_xml_output_unittest.py +405 -0
  1143. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_xml_output_unittest_.cc +197 -0
  1144. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_xml_test_utils.py +197 -0
  1145. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/production.cc +35 -0
  1146. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/production.h +54 -0
  1147. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/library.json +62 -0
  1148. package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/platformio.ini +47 -0
  1149. package/deps/couchbase-cxx-client/tools/CMakeLists.txt +2 -0
  1150. package/deps/couchbase-cxx-client/tools/analytics.cxx +375 -0
  1151. package/deps/couchbase-cxx-client/tools/analytics.hxx +26 -0
  1152. package/deps/couchbase-cxx-client/tools/cbc.cxx +11 -4
  1153. package/deps/couchbase-cxx-client/tools/command_registry.cxx +4 -0
  1154. package/deps/couchbase-cxx-client/tools/get.cxx +27 -31
  1155. package/deps/couchbase-cxx-client/tools/get.hxx +1 -1
  1156. package/deps/couchbase-cxx-client/tools/pillowfight.cxx +396 -0
  1157. package/deps/couchbase-cxx-client/tools/pillowfight.hxx +26 -0
  1158. package/deps/couchbase-cxx-client/tools/query.cxx +97 -101
  1159. package/deps/couchbase-cxx-client/tools/query.hxx +1 -1
  1160. package/deps/couchbase-cxx-client/tools/utils.cxx +15 -1
  1161. package/deps/couchbase-cxx-client/tools/utils.hxx +3 -0
  1162. package/deps/couchbase-cxx-client/tools/version.hxx +1 -1
  1163. package/dist/authenticators.d.ts +1 -1
  1164. package/dist/binding.d.ts +24 -9
  1165. package/dist/bindingutilities.d.ts +6 -2
  1166. package/dist/bindingutilities.js +39 -7
  1167. package/dist/cluster.d.ts +27 -0
  1168. package/dist/cluster.js +88 -56
  1169. package/dist/collection.js +6 -6
  1170. package/dist/configProfile.js +16 -10
  1171. package/dist/couchbase.d.ts +1 -0
  1172. package/dist/couchbase.js +2 -1
  1173. package/dist/errors.d.ts +2 -2
  1174. package/dist/errors.js +4 -4
  1175. package/dist/scope.js +6 -6
  1176. package/dist/sdspecs.js +11 -11
  1177. package/dist/searchquery.d.ts +1 -1
  1178. package/dist/streamablepromises.d.ts +1 -1
  1179. package/dist/transactions.js +5 -1
  1180. package/dist/usermanager.js +9 -9
  1181. package/dist/viewindexmanager.js +8 -8
  1182. package/package.json +1 -1
  1183. package/src/binding.cpp +2 -0
  1184. package/src/jstocbpp_autogen.hpp +0 -4
  1185. package/src/jstocbpp_basic.hpp +8 -2
  1186. package/src/jstocbpp_errors.hpp +35 -0
  1187. package/src/jstocbpp_transactions.hpp +61 -9
  1188. package/src/transaction.cpp +1 -1
  1189. package/deps/couchbase-cxx-client/core/config_profile.cxx +0 -25
  1190. package/deps/couchbase-cxx-client/test/test_transaction_transaction_context.cxx +0 -550
  1191. package/deps/couchbase-cxx-client/test/test_transaction_transaction_public_async_api.cxx +0 -392
  1192. package/deps/couchbase-cxx-client/test/test_transaction_transaction_public_blocking_api.cxx +0 -643
  1193. package/deps/couchbase-cxx-client/test/test_transaction_transaction_simple.cxx +0 -899
  1194. package/deps/couchbase-cxx-client/test/test_transaction_transaction_simple_async.cxx +0 -972
  1195. package/deps/couchbase-cxx-client/test/tools/CMakeLists.txt +0 -10
  1196. package/deps/couchbase-cxx-client/test/tools/tool_kv_loader.cxx +0 -349
  1197. package/deps/couchbase-cxx-client/test/utils/uniq_id.cxx +0 -29
  1198. package/deps/couchbase-cxx-client/test/utils/uniq_id.hxx +0 -26
  1199. package/deps/couchbase-cxx-client/third_party/catch2/.travis.yml +0 -335
  1200. package/deps/couchbase-cxx-client/third_party/catch2/CMake/MiscFunctions.cmake +0 -26
  1201. package/deps/couchbase-cxx-client/third_party/catch2/WORKSPACE +0 -0
  1202. package/deps/couchbase-cxx-client/third_party/catch2/contrib/Catch.cmake +0 -206
  1203. package/deps/couchbase-cxx-client/third_party/catch2/contrib/CatchAddTests.cmake +0 -135
  1204. package/deps/couchbase-cxx-client/third_party/catch2/docs/slow-compiles.md +0 -106
  1205. package/deps/couchbase-cxx-client/third_party/catch2/examples/000-CatchMain.cpp +0 -15
  1206. package/deps/couchbase-cxx-client/third_party/catch2/examples/200-Rpt-CatchMain.cpp +0 -27
  1207. package/deps/couchbase-cxx-client/third_party/catch2/examples/207-Rpt-TeamCityReporter.cpp +0 -171
  1208. package/deps/couchbase-cxx-client/third_party/catch2/include/catch.hpp +0 -496
  1209. package/deps/couchbase-cxx-client/third_party/catch2/include/catch_with_main.hpp +0 -14
  1210. package/deps/couchbase-cxx-client/third_party/catch2/include/external/clara.hpp +0 -1268
  1211. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/benchmark/catch_benchmark.hpp +0 -122
  1212. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/benchmark/catch_benchmarking_all.hpp +0 -29
  1213. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/benchmark/catch_chronometer.hpp +0 -71
  1214. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/benchmark/catch_clock.hpp +0 -40
  1215. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/benchmark/catch_constructor.hpp +0 -79
  1216. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/benchmark/catch_environment.hpp +0 -38
  1217. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/benchmark/catch_estimate.hpp +0 -31
  1218. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/benchmark/catch_execution_plan.hpp +0 -59
  1219. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/benchmark/catch_optimizer.hpp +0 -68
  1220. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/benchmark/catch_outlier_classification.hpp +0 -29
  1221. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/benchmark/catch_sample_analysis.hpp +0 -50
  1222. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/benchmark/detail/catch_analyse.hpp +0 -78
  1223. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/benchmark/detail/catch_benchmark_function.hpp +0 -105
  1224. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/benchmark/detail/catch_complete_invoke.hpp +0 -68
  1225. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/benchmark/detail/catch_estimate_clock.hpp +0 -115
  1226. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/benchmark/detail/catch_measure.hpp +0 -35
  1227. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/benchmark/detail/catch_repeat.hpp +0 -37
  1228. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/benchmark/detail/catch_run_for_at_least.hpp +0 -65
  1229. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/benchmark/detail/catch_stats.cpp +0 -224
  1230. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/benchmark/detail/catch_stats.hpp +0 -160
  1231. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/benchmark/detail/catch_timing.hpp +0 -33
  1232. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_approx.cpp +0 -88
  1233. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_approx.h +0 -132
  1234. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_assertionhandler.cpp +0 -122
  1235. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_assertionhandler.h +0 -88
  1236. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_assertioninfo.h +0 -31
  1237. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_assertionresult.cpp +0 -104
  1238. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_assertionresult.h +0 -59
  1239. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_capture.hpp +0 -159
  1240. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_capture_matchers.cpp +0 -24
  1241. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_capture_matchers.h +0 -88
  1242. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_clara.h +0 -38
  1243. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_commandline.cpp +0 -230
  1244. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_commandline.h +0 -20
  1245. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_common.cpp +0 -43
  1246. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_common.h +0 -92
  1247. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_compiler_capabilities.h +0 -377
  1248. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_config.cpp +0 -86
  1249. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_config.hpp +0 -133
  1250. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_config_uncaught_exceptions.hpp +0 -44
  1251. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_console_colour.cpp +0 -243
  1252. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_console_colour.h +0 -69
  1253. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_context.cpp +0 -70
  1254. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_context.h +0 -64
  1255. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_debug_console.cpp +0 -41
  1256. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_debug_console.h +0 -17
  1257. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_debugger.cpp +0 -122
  1258. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_debugger.h +0 -65
  1259. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_decomposer.cpp +0 -24
  1260. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_decomposer.h +0 -259
  1261. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_default_main.hpp +0 -47
  1262. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_enforce.cpp +0 -40
  1263. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_enforce.h +0 -53
  1264. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_enum_values_registry.cpp +0 -75
  1265. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_enum_values_registry.h +0 -35
  1266. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_errno_guard.cpp +0 -15
  1267. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_errno_guard.h +0 -22
  1268. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_exception_translator_registry.cpp +0 -89
  1269. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_exception_translator_registry.h +0 -30
  1270. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_external_interfaces.h +0 -20
  1271. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_fatal_condition.cpp +0 -244
  1272. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_fatal_condition.h +0 -68
  1273. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_generators.cpp +0 -32
  1274. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_generators.hpp +0 -219
  1275. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_generators_generic.hpp +0 -237
  1276. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_generators_specific.hpp +0 -175
  1277. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_impl.hpp +0 -33
  1278. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_interfaces_capture.cpp +0 -5
  1279. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_interfaces_capture.h +0 -100
  1280. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_interfaces_config.cpp +0 -5
  1281. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_interfaces_config.h +0 -92
  1282. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_interfaces_enum_values_registry.h +0 -46
  1283. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_interfaces_exception.cpp +0 -6
  1284. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_interfaces_exception.h +0 -88
  1285. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_interfaces_generatortracker.h +0 -39
  1286. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_interfaces_registry_hub.cpp +0 -6
  1287. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_interfaces_registry_hub.h +0 -61
  1288. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_interfaces_reporter.cpp +0 -114
  1289. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_interfaces_reporter.h +0 -272
  1290. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_interfaces_runner.cpp +0 -5
  1291. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_interfaces_runner.h +0 -19
  1292. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_interfaces_tag_alias_registry.h +0 -28
  1293. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_interfaces_testcase.cpp +0 -6
  1294. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_interfaces_testcase.h +0 -38
  1295. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_leak_detector.cpp +0 -37
  1296. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_leak_detector.h +0 -18
  1297. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_list.cpp +0 -173
  1298. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_list.h +0 -38
  1299. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_matchers.cpp +0 -28
  1300. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_matchers.h +0 -174
  1301. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_matchers_exception.cpp +0 -30
  1302. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_matchers_exception.hpp +0 -36
  1303. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_matchers_floating.cpp +0 -237
  1304. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_matchers_floating.h +0 -70
  1305. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_matchers_generic.cpp +0 -9
  1306. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_matchers_generic.hpp +0 -58
  1307. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_matchers_string.cpp +0 -118
  1308. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_matchers_string.h +0 -80
  1309. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_matchers_vector.h +0 -180
  1310. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_message.cpp +0 -142
  1311. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_message.h +0 -99
  1312. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_meta.hpp +0 -50
  1313. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_objc.hpp +0 -215
  1314. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_objc_arc.hpp +0 -51
  1315. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_option.hpp +0 -73
  1316. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_output_redirect.cpp +0 -147
  1317. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_output_redirect.h +0 -116
  1318. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_platform.h +0 -30
  1319. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_polyfills.cpp +0 -31
  1320. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_polyfills.hpp +0 -15
  1321. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_preprocessor.hpp +0 -237
  1322. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_random_number_generator.cpp +0 -73
  1323. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_random_number_generator.h +0 -58
  1324. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_reenable_warnings.h +0 -21
  1325. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_registry_hub.cpp +0 -99
  1326. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_reporter_registrars.hpp +0 -78
  1327. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_reporter_registry.cpp +0 -34
  1328. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_reporter_registry.h +0 -37
  1329. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_result_type.cpp +0 -27
  1330. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_result_type.h +0 -55
  1331. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_run_context.cpp +0 -595
  1332. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_run_context.h +0 -159
  1333. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_section.cpp +0 -38
  1334. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_section.h +0 -51
  1335. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_section_info.cpp +0 -19
  1336. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_section_info.h +0 -42
  1337. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_session.cpp +0 -313
  1338. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_session.h +0 -62
  1339. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_singletons.cpp +0 -36
  1340. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_singletons.hpp +0 -44
  1341. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_startup_exception_registry.cpp +0 -28
  1342. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_startup_exception_registry.h +0 -29
  1343. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_stream.cpp +0 -187
  1344. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_stream.h +0 -51
  1345. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_string_manip.cpp +0 -109
  1346. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_string_manip.h +0 -45
  1347. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_stringref.cpp +0 -50
  1348. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_stringref.h +0 -104
  1349. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_suppress_warnings.h +0 -27
  1350. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_tag_alias.cpp +0 -5
  1351. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_tag_alias.h +0 -26
  1352. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_tag_alias_autoregistrar.cpp +0 -16
  1353. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_tag_alias_autoregistrar.h +0 -26
  1354. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_tag_alias_registry.cpp +0 -58
  1355. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_tag_alias_registry.h +0 -31
  1356. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_test_case_info.cpp +0 -186
  1357. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_test_case_info.h +0 -90
  1358. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_test_case_registry_impl.cpp +0 -176
  1359. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_test_case_registry_impl.h +0 -71
  1360. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_test_case_tracker.cpp +0 -254
  1361. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_test_case_tracker.h +0 -180
  1362. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_test_registry.cpp +0 -37
  1363. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_test_registry.h +0 -402
  1364. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_test_spec.cpp +0 -99
  1365. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_test_spec.h +0 -94
  1366. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_test_spec_parser.cpp +0 -240
  1367. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_test_spec_parser.h +0 -79
  1368. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_text.h +0 -17
  1369. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_timer.cpp +0 -74
  1370. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_timer.h +0 -30
  1371. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_to_string.hpp +0 -28
  1372. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_tostring.cpp +0 -265
  1373. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_tostring.h +0 -675
  1374. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_totals.cpp +0 -61
  1375. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_totals.h +0 -41
  1376. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_uncaught_exceptions.cpp +0 -25
  1377. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_uncaught_exceptions.h +0 -15
  1378. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_user_interfaces.h +0 -18
  1379. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_version.cpp +0 -44
  1380. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_version.h +0 -39
  1381. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_wildcard_pattern.cpp +0 -47
  1382. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_wildcard_pattern.h +0 -38
  1383. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_windows_h_proxy.h +0 -39
  1384. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_xmlwriter.cpp +0 -334
  1385. package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_xmlwriter.h +0 -116
  1386. package/deps/couchbase-cxx-client/third_party/catch2/include/reporters/catch_reporter_automake.hpp +0 -62
  1387. package/deps/couchbase-cxx-client/third_party/catch2/include/reporters/catch_reporter_bases.cpp +0 -84
  1388. package/deps/couchbase-cxx-client/third_party/catch2/include/reporters/catch_reporter_bases.hpp +0 -285
  1389. package/deps/couchbase-cxx-client/third_party/catch2/include/reporters/catch_reporter_compact.cpp +0 -290
  1390. package/deps/couchbase-cxx-client/third_party/catch2/include/reporters/catch_reporter_compact.h +0 -39
  1391. package/deps/couchbase-cxx-client/third_party/catch2/include/reporters/catch_reporter_console.cpp +0 -700
  1392. package/deps/couchbase-cxx-client/third_party/catch2/include/reporters/catch_reporter_console.h +0 -89
  1393. package/deps/couchbase-cxx-client/third_party/catch2/include/reporters/catch_reporter_junit.cpp +0 -300
  1394. package/deps/couchbase-cxx-client/third_party/catch2/include/reporters/catch_reporter_junit.h +0 -62
  1395. package/deps/couchbase-cxx-client/third_party/catch2/include/reporters/catch_reporter_listening.cpp +0 -164
  1396. package/deps/couchbase-cxx-client/third_party/catch2/include/reporters/catch_reporter_listening.h +0 -63
  1397. package/deps/couchbase-cxx-client/third_party/catch2/include/reporters/catch_reporter_sonarqube.hpp +0 -181
  1398. package/deps/couchbase-cxx-client/third_party/catch2/include/reporters/catch_reporter_tap.hpp +0 -254
  1399. package/deps/couchbase-cxx-client/third_party/catch2/include/reporters/catch_reporter_teamcity.hpp +0 -219
  1400. package/deps/couchbase-cxx-client/third_party/catch2/include/reporters/catch_reporter_xml.cpp +0 -281
  1401. package/deps/couchbase-cxx-client/third_party/catch2/include/reporters/catch_reporter_xml.h +0 -68
  1402. package/deps/couchbase-cxx-client/third_party/catch2/misc/appveyorBuildConfigurationScript.bat +0 -22
  1403. package/deps/couchbase-cxx-client/third_party/catch2/misc/appveyorMergeCoverageScript.py +0 -9
  1404. package/deps/couchbase-cxx-client/third_party/catch2/misc/appveyorTestRunScript.bat +0 -15
  1405. package/deps/couchbase-cxx-client/third_party/catch2/misc/coverage-helper.cpp +0 -142
  1406. package/deps/couchbase-cxx-client/third_party/catch2/misc/installOpenCppCoverage.ps1 +0 -19
  1407. package/deps/couchbase-cxx-client/third_party/catch2/projects/CMakeLists.txt +0 -492
  1408. package/deps/couchbase-cxx-client/third_party/catch2/projects/ExtraTests/CMakeLists.txt +0 -201
  1409. package/deps/couchbase-cxx-client/third_party/catch2/projects/ExtraTests/ToDo.txt +0 -11
  1410. package/deps/couchbase-cxx-client/third_party/catch2/projects/ExtraTests/X01-PrefixedMacros.cpp +0 -84
  1411. package/deps/couchbase-cxx-client/third_party/catch2/projects/ExtraTests/X02-DisabledMacros.cpp +0 -31
  1412. package/deps/couchbase-cxx-client/third_party/catch2/projects/ExtraTests/X03-DisabledExceptions-DefaultHandler.cpp +0 -23
  1413. package/deps/couchbase-cxx-client/third_party/catch2/projects/ExtraTests/X04-DisabledExceptions-CustomHandler.cpp +0 -33
  1414. package/deps/couchbase-cxx-client/third_party/catch2/projects/ExtraTests/X10-FallbackStringifier.cpp +0 -23
  1415. package/deps/couchbase-cxx-client/third_party/catch2/projects/ExtraTests/X11-DisableStringification.cpp +0 -16
  1416. package/deps/couchbase-cxx-client/third_party/catch2/projects/ExtraTests/X12-CustomDebugBreakMacro.cpp +0 -17
  1417. package/deps/couchbase-cxx-client/third_party/catch2/projects/ExtraTests/X20-BenchmarkingMacros.cpp +0 -125
  1418. package/deps/couchbase-cxx-client/third_party/catch2/projects/ExtraTests/X90-WindowsHeaderInclusion.cpp +0 -12
  1419. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/Baselines/compact.sw.approved.txt +0 -1903
  1420. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/Baselines/console.std.approved.txt +0 -1425
  1421. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/Baselines/console.sw.approved.txt +0 -14183
  1422. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/Baselines/console.swa4.approved.txt +0 -936
  1423. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/Baselines/junit.sw.approved.txt +0 -1773
  1424. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/Baselines/sonarqube.sw.approved.txt +0 -1777
  1425. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/Baselines/xml.sw.approved.txt +0 -16767
  1426. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/CompileTimePerfTests/10.tests.cpp +0 -13
  1427. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/CompileTimePerfTests/100.tests.cpp +0 -13
  1428. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/CompileTimePerfTests/All.tests.cpp +0 -15
  1429. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/IntrospectiveTests/CmdLine.tests.cpp +0 -582
  1430. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/IntrospectiveTests/Details.tests.cpp +0 -23
  1431. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/IntrospectiveTests/GeneratorsImpl.tests.cpp +0 -352
  1432. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/IntrospectiveTests/InternalBenchmark.tests.cpp +0 -405
  1433. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/IntrospectiveTests/PartTracker.tests.cpp +0 -253
  1434. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/IntrospectiveTests/RandomNumberGeneration.tests.cpp +0 -45
  1435. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/IntrospectiveTests/String.tests.cpp +0 -150
  1436. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/IntrospectiveTests/StringManip.tests.cpp +0 -67
  1437. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/IntrospectiveTests/Tag.tests.cpp +0 -54
  1438. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/IntrospectiveTests/ToString.tests.cpp +0 -53
  1439. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/IntrospectiveTests/Xml.tests.cpp +0 -114
  1440. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/SurrogateCpps/catch_console_colour.cpp +0 -3
  1441. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/SurrogateCpps/catch_debugger.cpp +0 -2
  1442. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/SurrogateCpps/catch_interfaces_reporter.cpp +0 -2
  1443. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/SurrogateCpps/catch_option.cpp +0 -3
  1444. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/SurrogateCpps/catch_stream.cpp +0 -3
  1445. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/SurrogateCpps/catch_test_case_tracker.cpp +0 -2
  1446. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/SurrogateCpps/catch_test_spec.cpp +0 -3
  1447. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/SurrogateCpps/catch_xmlwriter.cpp +0 -4
  1448. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/TestMain.cpp +0 -34
  1449. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/TimingTests/Sleep.tests.cpp +0 -23
  1450. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/Approx.tests.cpp +0 -215
  1451. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/BDD.tests.cpp +0 -110
  1452. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/Benchmark.tests.cpp +0 -144
  1453. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/Class.tests.cpp +0 -137
  1454. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/Compilation.tests.cpp +0 -269
  1455. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/Condition.tests.cpp +0 -347
  1456. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/Decomposition.tests.cpp +0 -39
  1457. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/EnumToString.tests.cpp +0 -99
  1458. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/Exception.tests.cpp +0 -210
  1459. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/Generators.tests.cpp +0 -271
  1460. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/Matchers.tests.cpp +0 -676
  1461. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/Message.tests.cpp +0 -269
  1462. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/Misc.tests.cpp +0 -493
  1463. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/ToStringByte.tests.cpp +0 -15
  1464. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/ToStringChrono.tests.cpp +0 -44
  1465. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/ToStringGeneral.tests.cpp +0 -210
  1466. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/ToStringOptional.tests.cpp +0 -23
  1467. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/ToStringPair.tests.cpp +0 -30
  1468. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/ToStringTuple.tests.cpp +0 -47
  1469. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/ToStringVariant.tests.cpp +0 -91
  1470. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/ToStringVector.tests.cpp +0 -86
  1471. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/ToStringWhich.tests.cpp +0 -193
  1472. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/Tricky.tests.cpp +0 -429
  1473. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/VariadicMacros.tests.cpp +0 -29
  1474. package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/WarnAboutNoTests.cmake +0 -19
  1475. package/deps/couchbase-cxx-client/third_party/catch2/projects/TestScripts/testRandomOrder.py +0 -59
  1476. package/deps/couchbase-cxx-client/third_party/catch2/projects/XCode/OCTest/OCTest/CatchOCTestCase.h +0 -25
  1477. package/deps/couchbase-cxx-client/third_party/catch2/projects/XCode/OCTest/OCTest/CatchOCTestCase.mm +0 -87
  1478. package/deps/couchbase-cxx-client/third_party/catch2/projects/XCode/OCTest/OCTest/Main.mm +0 -2
  1479. package/deps/couchbase-cxx-client/third_party/catch2/projects/XCode/OCTest/OCTest/OCTest.1 +0 -79
  1480. package/deps/couchbase-cxx-client/third_party/catch2/projects/XCode/OCTest/OCTest/OCTest.mm +0 -28
  1481. package/deps/couchbase-cxx-client/third_party/catch2/projects/XCode/OCTest/OCTest/TestObj.h +0 -28
  1482. package/deps/couchbase-cxx-client/third_party/catch2/projects/XCode/OCTest/OCTest/TestObj.m +0 -25
  1483. package/deps/couchbase-cxx-client/third_party/catch2/projects/XCode/OCTest/OCTest.xcodeproj/project.pbxproj +0 -294
  1484. package/deps/couchbase-cxx-client/third_party/catch2/projects/XCode/OCTest/OCTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata +0 -7
  1485. package/deps/couchbase-cxx-client/third_party/catch2/projects/XCode/OCTest/OCTest.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +0 -8
  1486. package/deps/couchbase-cxx-client/third_party/catch2/projects/XCode/OCTest/catch_objc_impl.mm +0 -69
  1487. package/deps/couchbase-cxx-client/third_party/catch2/scripts/approvalTests.py +0 -217
  1488. package/deps/couchbase-cxx-client/third_party/catch2/scripts/approve.py +0 -33
  1489. package/deps/couchbase-cxx-client/third_party/catch2/scripts/benchmarkCompile.py +0 -148
  1490. package/deps/couchbase-cxx-client/third_party/catch2/scripts/benchmarkRunner.py +0 -56
  1491. package/deps/couchbase-cxx-client/third_party/catch2/scripts/developBuild.py +0 -10
  1492. package/deps/couchbase-cxx-client/third_party/catch2/scripts/embed.py +0 -63
  1493. package/deps/couchbase-cxx-client/third_party/catch2/scripts/embedClara.py +0 -27
  1494. package/deps/couchbase-cxx-client/third_party/catch2/scripts/extractFeaturesFromReleaseNotes.py +0 -94
  1495. package/deps/couchbase-cxx-client/third_party/catch2/scripts/fixWhitespace.py +0 -52
  1496. package/deps/couchbase-cxx-client/third_party/catch2/scripts/generateSingleHeader.py +0 -151
  1497. package/deps/couchbase-cxx-client/third_party/catch2/scripts/majorRelease.py +0 -10
  1498. package/deps/couchbase-cxx-client/third_party/catch2/scripts/minorRelease.py +0 -10
  1499. package/deps/couchbase-cxx-client/third_party/catch2/scripts/patchRelease.py +0 -10
  1500. package/deps/couchbase-cxx-client/third_party/catch2/scripts/releaseCommon.py +0 -168
  1501. package/deps/couchbase-cxx-client/third_party/catch2/scripts/releaseNotes.py +0 -65
  1502. package/deps/couchbase-cxx-client/third_party/catch2/scripts/scriptCommon.py +0 -31
  1503. package/deps/couchbase-cxx-client/third_party/catch2/scripts/updateDocumentToC.py +0 -449
  1504. package/deps/couchbase-cxx-client/third_party/catch2/scripts/updateWandbox.py +0 -53
  1505. package/deps/couchbase-cxx-client/third_party/catch2/single_include/catch2/catch.hpp +0 -17959
  1506. package/deps/couchbase-cxx-client/third_party/catch2/single_include/catch2/catch_reporter_automake.hpp +0 -62
  1507. package/deps/couchbase-cxx-client/third_party/catch2/single_include/catch2/catch_reporter_sonarqube.hpp +0 -181
  1508. package/deps/couchbase-cxx-client/third_party/catch2/single_include/catch2/catch_reporter_tap.hpp +0 -254
  1509. package/deps/couchbase-cxx-client/third_party/catch2/single_include/catch2/catch_reporter_teamcity.hpp +0 -219
  1510. package/deps/couchbase-cxx-client/third_party/catch2/src/catch_with_main.cpp +0 -2
  1511. package/deps/couchbase-cxx-client/third_party/snappy/.appveyor.yml +0 -36
  1512. package/deps/couchbase-cxx-client/third_party/snappy/.travis.yml +0 -94
  1513. /package/deps/couchbase-cxx-client/third_party/catch2/{artwork → data/artwork}/catch2-c-logo.png +0 -0
  1514. /package/deps/couchbase-cxx-client/third_party/catch2/{artwork → data/artwork}/catch2-hand-logo.png +0 -0
  1515. /package/deps/couchbase-cxx-client/third_party/catch2/{artwork → data/artwork}/catch2-logo-small.png +0 -0
  1516. /package/deps/couchbase-cxx-client/third_party/catch2/{contrib → extras}/ParseAndAddCatchTests.cmake +0 -0
  1517. /package/deps/couchbase-cxx-client/third_party/catch2/{contrib → extras}/gdbinit +0 -0
  1518. /package/deps/couchbase-cxx-client/third_party/catch2/{contrib → extras}/lldbinit +0 -0
  1519. /package/deps/couchbase-cxx-client/third_party/catch2/{projects → tests}/SelfTest/Baselines/automake.std.approved.txt +0 -0
  1520. /package/deps/couchbase-cxx-client/third_party/catch2/{projects → tests}/SelfTest/Misc/invalid-test-names.input +0 -0
  1521. /package/deps/couchbase-cxx-client/third_party/catch2/{projects → tests}/SelfTest/Misc/plain-old-tests.input +0 -0
  1522. /package/deps/couchbase-cxx-client/third_party/catch2/{projects → tests}/SelfTest/Misc/special-characters-in-file.input +0 -0
  1523. /package/deps/couchbase-cxx-client/third_party/catch2/{misc → tools/misc}/CMakeLists.txt +0 -0
@@ -0,0 +1,2071 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!-- filters='"*" ~[!nonportable] ~[!benchmark] ~[approvals]' rng-seed=1 -->
3
+ <testExecutions version="1"loose text artifact
4
+ >
5
+ <file path="tests/<exe-name>/IntrospectiveTests/Clara.tests.cpp">
6
+ <testCase name="Clara::Arg supports single-arg parse the way Opt does" duration="{duration}"/>
7
+ <testCase name="Clara::Opt supports accept-many lambdas/Parsing fails on multiple options without accept_many" duration="{duration}"/>
8
+ <testCase name="Clara::Opt supports accept-many lambdas/Parsing succeeds on multiple options with accept_many" duration="{duration}"/>
9
+ <testCase name="is_unary_function" duration="{duration}"/>
10
+ </file>
11
+ <file path="tests/<exe-name>/IntrospectiveTests/CmdLine.tests.cpp">
12
+ <testCase name="Parsing sharding-related cli flags/shard-count" duration="{duration}"/>
13
+ <testCase name="Parsing sharding-related cli flags/Negative shard count reports error" duration="{duration}"/>
14
+ <testCase name="Parsing sharding-related cli flags/Zero shard count reports error" duration="{duration}"/>
15
+ <testCase name="Parsing sharding-related cli flags/shard-index" duration="{duration}"/>
16
+ <testCase name="Parsing sharding-related cli flags/Negative shard index reports error" duration="{duration}"/>
17
+ <testCase name="Parsing sharding-related cli flags/Shard index 0 is accepted" duration="{duration}"/>
18
+ <testCase name="Parsing warnings/NoAssertions" duration="{duration}"/>
19
+ <testCase name="Parsing warnings/NoTests is no longer supported" duration="{duration}"/>
20
+ <testCase name="Parsing warnings/Combining multiple warnings" duration="{duration}"/>
21
+ <testCase name="Process can be configured on command line/empty args don't cause a crash" duration="{duration}"/>
22
+ <testCase name="Process can be configured on command line/default - no arguments" duration="{duration}"/>
23
+ <testCase name="Process can be configured on command line/test lists/Specify one test case using" duration="{duration}"/>
24
+ <testCase name="Process can be configured on command line/test lists/Specify one test case exclusion using exclude:" duration="{duration}"/>
25
+ <testCase name="Process can be configured on command line/test lists/Specify one test case exclusion using ~" duration="{duration}"/>
26
+ <testCase name="Process can be configured on command line/reporter/-r/console" duration="{duration}"/>
27
+ <testCase name="Process can be configured on command line/reporter/-r/xml" duration="{duration}"/>
28
+ <testCase name="Process can be configured on command line/reporter/--reporter/junit" duration="{duration}"/>
29
+ <testCase name="Process can be configured on command line/reporter/must match one of the available ones" duration="{duration}"/>
30
+ <testCase name="Process can be configured on command line/reporter/With output file" duration="{duration}"/>
31
+ <testCase name="Process can be configured on command line/reporter/With Windows-like absolute path as output file" duration="{duration}"/>
32
+ <testCase name="Process can be configured on command line/reporter/Multiple reporters/All with output files" duration="{duration}"/>
33
+ <testCase name="Process can be configured on command line/reporter/Multiple reporters/Mixed output files and default output" duration="{duration}"/>
34
+ <testCase name="Process can be configured on command line/reporter/Multiple reporters/cannot have multiple reporters with default output" duration="{duration}"/>
35
+ <testCase name="Process can be configured on command line/debugger/-b" duration="{duration}"/>
36
+ <testCase name="Process can be configured on command line/debugger/--break" duration="{duration}"/>
37
+ <testCase name="Process can be configured on command line/abort/-a aborts after first failure" duration="{duration}"/>
38
+ <testCase name="Process can be configured on command line/abort/-x 2 aborts after two failures" duration="{duration}"/>
39
+ <testCase name="Process can be configured on command line/abort/-x must be numeric" duration="{duration}"/>
40
+ <testCase name="Process can be configured on command line/abort/wait-for-keypress/Accepted options" duration="{duration}"/>
41
+ <testCase name="Process can be configured on command line/abort/wait-for-keypress/invalid options are reported" duration="{duration}"/>
42
+ <testCase name="Process can be configured on command line/nothrow/-e" duration="{duration}"/>
43
+ <testCase name="Process can be configured on command line/nothrow/--nothrow" duration="{duration}"/>
44
+ <testCase name="Process can be configured on command line/output filename/-o filename" duration="{duration}"/>
45
+ <testCase name="Process can be configured on command line/output filename/--out" duration="{duration}"/>
46
+ <testCase name="Process can be configured on command line/combinations/Single character flags can be combined" duration="{duration}"/>
47
+ <testCase name="Process can be configured on command line/use-colour/without option" duration="{duration}"/>
48
+ <testCase name="Process can be configured on command line/use-colour/auto" duration="{duration}"/>
49
+ <testCase name="Process can be configured on command line/use-colour/yes" duration="{duration}"/>
50
+ <testCase name="Process can be configured on command line/use-colour/no" duration="{duration}"/>
51
+ <testCase name="Process can be configured on command line/use-colour/error" duration="{duration}"/>
52
+ <testCase name="Process can be configured on command line/Benchmark options/samples" duration="{duration}"/>
53
+ <testCase name="Process can be configured on command line/Benchmark options/resamples" duration="{duration}"/>
54
+ <testCase name="Process can be configured on command line/Benchmark options/confidence-interval" duration="{duration}"/>
55
+ <testCase name="Process can be configured on command line/Benchmark options/no-analysis" duration="{duration}"/>
56
+ <testCase name="Process can be configured on command line/Benchmark options/warmup-time" duration="{duration}"/>
57
+ <testCase name="Test with special, characters &quot;in name" duration="{duration}"/>
58
+ </file>
59
+ <file path="tests/<exe-name>/IntrospectiveTests/ColourImpl.tests.cpp">
60
+ <testCase name="ColourGuard behaviour/ColourGuard is disengaged by default" duration="{duration}"/>
61
+ <testCase name="ColourGuard behaviour/ColourGuard is engaged by op&lt;&lt;" duration="{duration}"/>
62
+ <testCase name="ColourGuard behaviour/ColourGuard can be engaged explicitly" duration="{duration}"/>
63
+ </file>
64
+ <file path="tests/<exe-name>/IntrospectiveTests/Details.tests.cpp">
65
+ <testCase name="CaseInsensitiveEqualsTo is case insensitive/Degenerate cases" duration="{duration}"/>
66
+ <testCase name="CaseInsensitiveEqualsTo is case insensitive/Plain comparisons" duration="{duration}"/>
67
+ <testCase name="CaseInsensitiveLess is case insensitive/Degenerate cases" duration="{duration}"/>
68
+ <testCase name="CaseInsensitiveLess is case insensitive/Plain comparisons" duration="{duration}"/>
69
+ </file>
70
+ <file path="tests/<exe-name>/IntrospectiveTests/FloatingPoint.tests.cpp">
71
+ <testCase name="convertToBits" duration="{duration}"/>
72
+ </file>
73
+ <file path="tests/<exe-name>/IntrospectiveTests/GeneratorsImpl.tests.cpp">
74
+ <testCase name="Filter generator throws exception for empty generator" duration="{duration}"/>
75
+ <testCase name="Generators internals/Single value" duration="{duration}"/>
76
+ <testCase name="Generators internals/Preset values" duration="{duration}"/>
77
+ <testCase name="Generators internals/Generator combinator" duration="{duration}"/>
78
+ <testCase name="Generators internals/Explicitly typed generator sequence" duration="{duration}"/>
79
+ <testCase name="Generators internals/Filter generator/Simple filtering" duration="{duration}"/>
80
+ <testCase name="Generators internals/Filter generator/Filter out multiple elements at the start and end" duration="{duration}"/>
81
+ <testCase name="Generators internals/Filter generator/Throws on construction if it can't get initial element" duration="{duration}"/>
82
+ <testCase name="Generators internals/Take generator/Take less" duration="{duration}"/>
83
+ <testCase name="Generators internals/Take generator/Take more" duration="{duration}"/>
84
+ <testCase name="Generators internals/Map with explicit return type" duration="{duration}"/>
85
+ <testCase name="Generators internals/Map with deduced return type" duration="{duration}"/>
86
+ <testCase name="Generators internals/Repeat/Singular repeat" duration="{duration}"/>
87
+ <testCase name="Generators internals/Repeat/Actual repeat" duration="{duration}"/>
88
+ <testCase name="Generators internals/Range/Positive auto step/Integer" duration="{duration}"/>
89
+ <testCase name="Generators internals/Range/Negative auto step/Integer" duration="{duration}"/>
90
+ <testCase name="Generators internals/Range/Positive manual step/Integer/Exact" duration="{duration}"/>
91
+ <testCase name="Generators internals/Range/Positive manual step/Integer/Slightly over end" duration="{duration}"/>
92
+ <testCase name="Generators internals/Range/Positive manual step/Integer/Slightly under end" duration="{duration}"/>
93
+ <testCase name="Generators internals/Range/Positive manual step/Floating Point/Exact" duration="{duration}"/>
94
+ <testCase name="Generators internals/Range/Positive manual step/Floating Point/Slightly over end" duration="{duration}"/>
95
+ <testCase name="Generators internals/Range/Positive manual step/Floating Point/Slightly under end" duration="{duration}"/>
96
+ <testCase name="Generators internals/Range/Negative manual step/Integer/Exact" duration="{duration}"/>
97
+ <testCase name="Generators internals/Range/Negative manual step/Integer/Slightly over end" duration="{duration}"/>
98
+ <testCase name="Generators internals/Range/Negative manual step/Integer/Slightly under end" duration="{duration}"/>
99
+ </file>
100
+ <file path="tests/<exe-name>/IntrospectiveTests/InternalBenchmark.tests.cpp">
101
+ <testCase name="analyse no analysis" duration="{duration}"/>
102
+ <testCase name="benchmark function call/without chronometer" duration="{duration}"/>
103
+ <testCase name="benchmark function call/with chronometer" duration="{duration}"/>
104
+ <testCase name="classify_outliers/none" duration="{duration}"/>
105
+ <testCase name="classify_outliers/low severe" duration="{duration}"/>
106
+ <testCase name="classify_outliers/low mild" duration="{duration}"/>
107
+ <testCase name="classify_outliers/high mild" duration="{duration}"/>
108
+ <testCase name="classify_outliers/high severe" duration="{duration}"/>
109
+ <testCase name="classify_outliers/mixed" duration="{duration}"/>
110
+ <testCase name="erfc_inv" duration="{duration}"/>
111
+ <testCase name="estimate_clock_resolution" duration="{duration}"/>
112
+ <testCase name="mean" duration="{duration}"/>
113
+ <testCase name="measure" duration="{duration}"/>
114
+ <testCase name="normal_cdf" duration="{duration}"/>
115
+ <testCase name="normal_quantile" duration="{duration}"/>
116
+ <testCase name="resolution" duration="{duration}"/>
117
+ <testCase name="run_for_at_least, chronometer" duration="{duration}"/>
118
+ <testCase name="run_for_at_least, int" duration="{duration}"/>
119
+ <testCase name="uniform samples" duration="{duration}"/>
120
+ <testCase name="warmup" duration="{duration}"/>
121
+ <testCase name="weighted_average_quantile" duration="{duration}"/>
122
+ </file>
123
+ <file path="tests/<exe-name>/IntrospectiveTests/Parse.tests.cpp">
124
+ <testCase name="Parse uints/proper inputs" duration="{duration}"/>
125
+ <testCase name="Parse uints/Bad inputs" duration="{duration}"/>
126
+ </file>
127
+ <file path="tests/<exe-name>/IntrospectiveTests/PartTracker.tests.cpp">
128
+ <testCase name="#1938 - GENERATE after a section/A" duration="{duration}"/>
129
+ <testCase name="#1938 - GENERATE after a section/B" duration="{duration}"/>
130
+ <testCase name="#1938 - Section followed by flat generate" duration="{duration}"/>
131
+ <testCase name="#1938 - Section followed by flat generate/A" duration="{duration}"/>
132
+ <testCase name="#1938 - flat generate" duration="{duration}"/>
133
+ <testCase name="#1938 - mixed sections and generates" duration="{duration}"/>
134
+ <testCase name="#1938 - mixed sections and generates/A" duration="{duration}"/>
135
+ <testCase name="#1938 - mixed sections and generates/B" duration="{duration}"/>
136
+ <testCase name="#1938 - nested generate" duration="{duration}"/>
137
+ <testCase name="Tracker" duration="{duration}"/>
138
+ <testCase name="Tracker/successfully close one section" duration="{duration}"/>
139
+ <testCase name="Tracker/fail one section" duration="{duration}"/>
140
+ <testCase name="Tracker/fail one section/re-enter after failed section" duration="{duration}"/>
141
+ <testCase name="Tracker/fail one section/re-enter after failed section and find next section" duration="{duration}"/>
142
+ <testCase name="Tracker/successfully close one section, then find another" duration="{duration}"/>
143
+ <testCase name="Tracker/successfully close one section, then find another/Re-enter - skips S1 and enters S2" duration="{duration}"/>
144
+ <testCase name="Tracker/successfully close one section, then find another/Re-enter - skips S1 and enters S2/Successfully close S2" duration="{duration}"/>
145
+ <testCase name="Tracker/successfully close one section, then find another/Re-enter - skips S1 and enters S2/fail S2" duration="{duration}"/>
146
+ <testCase name="Tracker/open a nested section" duration="{duration}"/>
147
+ </file>
148
+ <file path="tests/<exe-name>/IntrospectiveTests/RandomNumberGeneration.tests.cpp">
149
+ <testCase name="Comparison ops" duration="{duration}"/>
150
+ <testCase name="Our PCG implementation provides expected results for known seeds/Default seeded" duration="{duration}"/>
151
+ <testCase name="Our PCG implementation provides expected results for known seeds/Specific seed" duration="{duration}"/>
152
+ <testCase name="Random seed generation accepts known methods" duration="{duration}"/>
153
+ <testCase name="Random seed generation reports unknown methods" duration="{duration}"/>
154
+ </file>
155
+ <file path="tests/<exe-name>/IntrospectiveTests/Reporters.tests.cpp">
156
+ <testCase name="Multireporter calls reporters and listeners in correct order" duration="{duration}"/>
157
+ <testCase name="Multireporter updates ReporterPreferences properly" duration="{duration}"/>
158
+ <testCase name="Multireporter updates ReporterPreferences properly/Adding listeners" duration="{duration}"/>
159
+ <testCase name="Multireporter updates ReporterPreferences properly/Adding reporters" duration="{duration}"/>
160
+ <testCase name="Registering reporter with '::' in name fails" duration="{duration}"/>
161
+ <testCase name="Reporter's write listings to provided stream" duration="{duration}"/>
162
+ <testCase name="Reporter's write listings to provided stream/Automake reporter lists tags" duration="{duration}"/>
163
+ <testCase name="Reporter's write listings to provided stream/Automake reporter lists reporters" duration="{duration}"/>
164
+ <testCase name="Reporter's write listings to provided stream/Automake reporter lists tests" duration="{duration}"/>
165
+ <testCase name="Reporter's write listings to provided stream/compact reporter lists tags" duration="{duration}"/>
166
+ <testCase name="Reporter's write listings to provided stream/compact reporter lists reporters" duration="{duration}"/>
167
+ <testCase name="Reporter's write listings to provided stream/compact reporter lists tests" duration="{duration}"/>
168
+ <testCase name="Reporter's write listings to provided stream/console reporter lists tags" duration="{duration}"/>
169
+ <testCase name="Reporter's write listings to provided stream/console reporter lists reporters" duration="{duration}"/>
170
+ <testCase name="Reporter's write listings to provided stream/console reporter lists tests" duration="{duration}"/>
171
+ <testCase name="Reporter's write listings to provided stream/JUnit reporter lists tags" duration="{duration}"/>
172
+ <testCase name="Reporter's write listings to provided stream/JUnit reporter lists reporters" duration="{duration}"/>
173
+ <testCase name="Reporter's write listings to provided stream/JUnit reporter lists tests" duration="{duration}"/>
174
+ <testCase name="Reporter's write listings to provided stream/SonarQube reporter lists tags" duration="{duration}"/>
175
+ <testCase name="Reporter's write listings to provided stream/SonarQube reporter lists reporters" duration="{duration}"/>
176
+ <testCase name="Reporter's write listings to provided stream/SonarQube reporter lists tests" duration="{duration}"/>
177
+ <testCase name="Reporter's write listings to provided stream/TAP reporter lists tags" duration="{duration}"/>
178
+ <testCase name="Reporter's write listings to provided stream/TAP reporter lists reporters" duration="{duration}"/>
179
+ <testCase name="Reporter's write listings to provided stream/TAP reporter lists tests" duration="{duration}"/>
180
+ <testCase name="Reporter's write listings to provided stream/TeamCity reporter lists tags" duration="{duration}"/>
181
+ <testCase name="Reporter's write listings to provided stream/TeamCity reporter lists reporters" duration="{duration}"/>
182
+ <testCase name="Reporter's write listings to provided stream/TeamCity reporter lists tests" duration="{duration}"/>
183
+ <testCase name="Reporter's write listings to provided stream/XML reporter lists tags" duration="{duration}"/>
184
+ <testCase name="Reporter's write listings to provided stream/XML reporter lists reporters" duration="{duration}"/>
185
+ <testCase name="Reporter's write listings to provided stream/XML reporter lists tests" duration="{duration}"/>
186
+ <testCase name="Reproducer for #2309 - a very long description past 80 chars (default console width) with a late colon : blablabla" duration="{duration}"/>
187
+ <testCase name="The default listing implementation write to provided stream/Listing tags" duration="{duration}"/>
188
+ <testCase name="The default listing implementation write to provided stream/Listing reporters" duration="{duration}"/>
189
+ <testCase name="The default listing implementation write to provided stream/Listing tests" duration="{duration}"/>
190
+ <testCase name="The default listing implementation write to provided stream/Listing listeners" duration="{duration}"/>
191
+ </file>
192
+ <file path="tests/<exe-name>/IntrospectiveTests/Stream.tests.cpp">
193
+ <testCase name="Cout stream properly declares it writes to stdout" duration="{duration}"/>
194
+ <testCase name="Empty stream name opens cout stream" duration="{duration}"/>
195
+ <testCase name="makeStream recognizes %debug stream name" duration="{duration}"/>
196
+ <testCase name="request an unknown %-starting stream fails" duration="{duration}"/>
197
+ <testCase name="stdout and stderr streams have %-starting name" duration="{duration}"/>
198
+ </file>
199
+ <file path="tests/<exe-name>/IntrospectiveTests/String.tests.cpp">
200
+ <testCase name="StringRef/Empty string" duration="{duration}"/>
201
+ <testCase name="StringRef/From string literal" duration="{duration}"/>
202
+ <testCase name="StringRef/From sub-string" duration="{duration}"/>
203
+ <testCase name="StringRef/Copy construction is shallow" duration="{duration}"/>
204
+ <testCase name="StringRef/Copy assignment is shallow" duration="{duration}"/>
205
+ <testCase name="StringRef/Substrings/zero-based substring" duration="{duration}"/>
206
+ <testCase name="StringRef/Substrings/non-zero-based substring" duration="{duration}"/>
207
+ <testCase name="StringRef/Substrings/Pointer values of full refs should match" duration="{duration}"/>
208
+ <testCase name="StringRef/Substrings/Pointer values of substring refs should also match" duration="{duration}"/>
209
+ <testCase name="StringRef/Substrings/Past the end substring" duration="{duration}"/>
210
+ <testCase name="StringRef/Substrings/Substring off the end are trimmed" duration="{duration}"/>
211
+ <testCase name="StringRef/Substrings/substring start after the end is empty" duration="{duration}"/>
212
+ <testCase name="StringRef/Comparisons are deep" duration="{duration}"/>
213
+ <testCase name="StringRef/from std::string/implicitly constructed" duration="{duration}"/>
214
+ <testCase name="StringRef/from std::string/explicitly constructed" duration="{duration}"/>
215
+ <testCase name="StringRef/from std::string/assigned" duration="{duration}"/>
216
+ <testCase name="StringRef/to std::string/explicitly constructed" duration="{duration}"/>
217
+ <testCase name="StringRef/to std::string/assigned" duration="{duration}"/>
218
+ <testCase name="StringRef/std::string += StringRef" duration="{duration}"/>
219
+ <testCase name="StringRef/StringRef + StringRef" duration="{duration}"/>
220
+ <testCase name="StringRef at compilation time/Simple constructors" duration="{duration}"/>
221
+ <testCase name="StringRef at compilation time/UDL construction" duration="{duration}"/>
222
+ </file>
223
+ <file path="tests/<exe-name>/IntrospectiveTests/StringManip.tests.cpp">
224
+ <testCase name="Trim strings" duration="{duration}"/>
225
+ <testCase name="replaceInPlace/replace single char" duration="{duration}"/>
226
+ <testCase name="replaceInPlace/replace two chars" duration="{duration}"/>
227
+ <testCase name="replaceInPlace/replace first char" duration="{duration}"/>
228
+ <testCase name="replaceInPlace/replace last char" duration="{duration}"/>
229
+ <testCase name="replaceInPlace/replace all chars" duration="{duration}"/>
230
+ <testCase name="replaceInPlace/replace no chars" duration="{duration}"/>
231
+ <testCase name="replaceInPlace/escape '" duration="{duration}"/>
232
+ <testCase name="splitString" duration="{duration}"/>
233
+ <testCase name="startsWith" duration="{duration}"/>
234
+ </file>
235
+ <file path="tests/<exe-name>/IntrospectiveTests/Tag.tests.cpp">
236
+ <testCase name="Empty tag is not allowed" duration="{duration}"/>
237
+ <testCase name="Tag alias can be registered against tag patterns/The same tag alias can only be registered once" duration="{duration}"/>
238
+ <testCase name="Tag alias can be registered against tag patterns/Tag aliases must be of the form [@name]" duration="{duration}"/>
239
+ <testCase name="Tags with spaces and non-alphanumerical characters are accepted" duration="{duration}"/>
240
+ <testCase name="Test case with identical tags keeps just one" duration="{duration}"/>
241
+ <testCase name="empty tags are not allowed" duration="{duration}"/>
242
+ <testCase name="shortened hide tags are split apart" duration="{duration}"/>
243
+ <testCase name="tags with dots in later positions are not parsed as hidden" duration="{duration}"/>
244
+ </file>
245
+ <file path="tests/<exe-name>/IntrospectiveTests/TestCaseInfoHasher.tests.cpp">
246
+ <testCase name="Hashers with different seed produce different hash with same test case" duration="{duration}"/>
247
+ <testCase name="Hashers with same seed produce same hash" duration="{duration}"/>
248
+ <testCase name="Hashing different test cases produces different result/Different test name" duration="{duration}"/>
249
+ <testCase name="Hashing different test cases produces different result/Different classname" duration="{duration}"/>
250
+ <testCase name="Hashing different test cases produces different result/Different tags" duration="{duration}"/>
251
+ <testCase name="Hashing test case produces same hash across multiple calls" duration="{duration}"/>
252
+ </file>
253
+ <file path="tests/<exe-name>/IntrospectiveTests/TestSpec.tests.cpp">
254
+ <testCase name="#1905 -- test spec parser properly clears internal state between compound tests" duration="{duration}"/>
255
+ <testCase name="#1912 -- test spec parser handles escaping/Various parentheses" duration="{duration}"/>
256
+ <testCase name="#1912 -- test spec parser handles escaping/backslash in test name" duration="{duration}"/>
257
+ </file>
258
+ <file path="tests/<exe-name>/IntrospectiveTests/TestSpecParser.tests.cpp">
259
+ <testCase name="Parsed tags are matched case insensitive" duration="{duration}"/>
260
+ <testCase name="Parsing tags with non-alphabetical characters is pass-through" duration="{duration}"/>
261
+ </file>
262
+ <file path="tests/<exe-name>/IntrospectiveTests/ToString.tests.cpp">
263
+ <testCase name="Directly creating an EnumInfo" duration="{duration}"/>
264
+ <testCase name="Range type with sentinel" duration="{duration}"/>
265
+ <testCase name="Stringifying char arrays with statically known sizes - char" duration="{duration}"/>
266
+ <testCase name="Stringifying char arrays with statically known sizes - signed char" duration="{duration}"/>
267
+ <testCase name="Stringifying char arrays with statically known sizes - unsigned char" duration="{duration}"/>
268
+ <testCase name="parseEnums/No enums" duration="{duration}"/>
269
+ <testCase name="parseEnums/One enum value" duration="{duration}"/>
270
+ <testCase name="parseEnums/Multiple enum values" duration="{duration}"/>
271
+ </file>
272
+ <file path="tests/<exe-name>/IntrospectiveTests/UniquePtr.tests.cpp">
273
+ <testCase name="Upcasting special member functions/Move constructor" duration="{duration}"/>
274
+ <testCase name="Upcasting special member functions/move assignment" duration="{duration}"/>
275
+ <testCase name="make_unique reimplementation/From lvalue copies" duration="{duration}"/>
276
+ <testCase name="make_unique reimplementation/From rvalue moves" duration="{duration}"/>
277
+ <testCase name="make_unique reimplementation/Variadic constructor" duration="{duration}"/>
278
+ <testCase name="unique_ptr reimplementation: basic functionality/Default constructed unique_ptr is empty" duration="{duration}"/>
279
+ <testCase name="unique_ptr reimplementation: basic functionality/Take ownership of allocation" duration="{duration}"/>
280
+ <testCase name="unique_ptr reimplementation: basic functionality/Take ownership of allocation/Plain reset deallocates" duration="{duration}"/>
281
+ <testCase name="unique_ptr reimplementation: basic functionality/Take ownership of allocation/Reset replaces ownership" duration="{duration}"/>
282
+ <testCase name="unique_ptr reimplementation: basic functionality/Release releases ownership" duration="{duration}"/>
283
+ <testCase name="unique_ptr reimplementation: basic functionality/Move constructor" duration="{duration}"/>
284
+ <testCase name="unique_ptr reimplementation: basic functionality/Move assignment" duration="{duration}"/>
285
+ <testCase name="unique_ptr reimplementation: basic functionality/free swap" duration="{duration}"/>
286
+ </file>
287
+ <file path="tests/<exe-name>/IntrospectiveTests/Xml.tests.cpp">
288
+ <testCase name="XmlEncode/normal string" duration="{duration}"/>
289
+ <testCase name="XmlEncode/empty string" duration="{duration}"/>
290
+ <testCase name="XmlEncode/string with ampersand" duration="{duration}"/>
291
+ <testCase name="XmlEncode/string with less-than" duration="{duration}"/>
292
+ <testCase name="XmlEncode/string with greater-than" duration="{duration}"/>
293
+ <testCase name="XmlEncode/string with quotes" duration="{duration}"/>
294
+ <testCase name="XmlEncode/string with control char (1)" duration="{duration}"/>
295
+ <testCase name="XmlEncode/string with control char (x7F)" duration="{duration}"/>
296
+ <testCase name="XmlWriter writes boolean attributes as true/false" duration="{duration}"/>
297
+ </file>
298
+ <file path="tests/<exe-name>/UsageTests/Approx.tests.cpp">
299
+ <testCase name="A comparison that uses literals instead of the normal constructor" duration="{duration}"/>
300
+ <testCase name="Absolute margin" duration="{duration}"/>
301
+ <testCase name="Approx setters validate their arguments" duration="{duration}"/>
302
+ <testCase name="Approx with exactly-representable margin" duration="{duration}"/>
303
+ <testCase name="Approximate PI" duration="{duration}"/>
304
+ <testCase name="Approximate comparisons with different epsilons" duration="{duration}"/>
305
+ <testCase name="Approximate comparisons with floats" duration="{duration}"/>
306
+ <testCase name="Approximate comparisons with ints" duration="{duration}"/>
307
+ <testCase name="Approximate comparisons with mixed numeric types" duration="{duration}"/>
308
+ <testCase name="Comparison with explicitly convertible types" duration="{duration}"/>
309
+ <testCase name="Default scale is invisible to comparison" duration="{duration}"/>
310
+ <testCase name="Epsilon only applies to Approx's value" duration="{duration}"/>
311
+ <testCase name="Greater-than inequalities with different epsilons" duration="{duration}"/>
312
+ <testCase name="Less-than inequalities with different epsilons" duration="{duration}"/>
313
+ <testCase name="Some simple comparisons between doubles" duration="{duration}"/>
314
+ <testCase name="Use a custom approx" duration="{duration}"/>
315
+ </file>
316
+ <file path="tests/<exe-name>/UsageTests/BDD.tests.cpp">
317
+ <testCase name="Scenario: BDD tests requiring Fixtures to provide commonly-accessed data or methods/Given: No operations precede me" duration="{duration}"/>
318
+ <testCase name="Scenario: BDD tests requiring Fixtures to provide commonly-accessed data or methods/Given: No operations precede me/When: We get the count/Then: Subsequently values are higher" duration="{duration}"/>
319
+ <testCase name="Scenario: Do that thing with the thing/Given: This stuff exists/And given: And some assumption/When: I do this/Then: it should do this" duration="{duration}"/>
320
+ <testCase name="Scenario: Do that thing with the thing/Given: This stuff exists/And given: And some assumption/When: I do this/Then: it should do this/And: do that" duration="{duration}"/>
321
+ <testCase name="Scenario: This is a really long scenario name to see how the list command deals with wrapping/Given: A section name that is so long that it cannot fit in a single console width/When: The test headers are printed as part of the normal running of the scenario/Then: The, deliberately very long and overly verbose (you see what I did there?) section names must wrap, along with an indent" duration="{duration}"/>
322
+ <testCase name="Scenario: Vector resizing affects size and capacity/Given: an empty vector" duration="{duration}"/>
323
+ <testCase name="Scenario: Vector resizing affects size and capacity/Given: an empty vector/When: it is made larger/Then: the size and capacity go up" duration="{duration}"/>
324
+ <testCase name="Scenario: Vector resizing affects size and capacity/Given: an empty vector/When: it is made larger/Then: the size and capacity go up/And when: it is made smaller again/Then: the size goes down but the capacity stays the same" duration="{duration}"/>
325
+ <testCase name="Scenario: Vector resizing affects size and capacity/Given: an empty vector/When: we reserve more space/Then: The capacity is increased but the size remains the same" duration="{duration}"/>
326
+ </file>
327
+ <file path="tests/<exe-name>/UsageTests/Class.tests.cpp">
328
+ <testCase name="A METHOD_AS_TEST_CASE based test run that fails" duration="{duration}">
329
+ <failure message="REQUIRE(s == &quot;world&quot;)">
330
+ FAILED:
331
+ REQUIRE( s == "world" )
332
+ with expansion:
333
+ "hello" == "world"
334
+ at Class.tests.cpp:<line number>
335
+ </failure>
336
+ </testCase>
337
+ <testCase name="A METHOD_AS_TEST_CASE based test run that succeeds" duration="{duration}"/>
338
+ <testCase name="A TEMPLATE_PRODUCT_TEST_CASE_METHOD based test run that fails - Template_Foo&lt;float>" duration="{duration}">
339
+ <failure message="REQUIRE(Template_Fixture_2&lt;TestType>::m_a.size() == 1)">
340
+ FAILED:
341
+ REQUIRE( Template_Fixture_2&lt;TestType>::m_a.size() == 1 )
342
+ with expansion:
343
+ 0 == 1
344
+ at Class.tests.cpp:<line number>
345
+ </failure>
346
+ </testCase>
347
+ <testCase name="A TEMPLATE_PRODUCT_TEST_CASE_METHOD based test run that fails - Template_Foo&lt;int>" duration="{duration}">
348
+ <failure message="REQUIRE(Template_Fixture_2&lt;TestType>::m_a.size() == 1)">
349
+ FAILED:
350
+ REQUIRE( Template_Fixture_2&lt;TestType>::m_a.size() == 1 )
351
+ with expansion:
352
+ 0 == 1
353
+ at Class.tests.cpp:<line number>
354
+ </failure>
355
+ </testCase>
356
+ <testCase name="A TEMPLATE_PRODUCT_TEST_CASE_METHOD based test run that fails - std::vector&lt;float>" duration="{duration}">
357
+ <failure message="REQUIRE(Template_Fixture_2&lt;TestType>::m_a.size() == 1)">
358
+ FAILED:
359
+ REQUIRE( Template_Fixture_2&lt;TestType>::m_a.size() == 1 )
360
+ with expansion:
361
+ 0 == 1
362
+ at Class.tests.cpp:<line number>
363
+ </failure>
364
+ </testCase>
365
+ <testCase name="A TEMPLATE_PRODUCT_TEST_CASE_METHOD based test run that fails - std::vector&lt;int>" duration="{duration}">
366
+ <failure message="REQUIRE(Template_Fixture_2&lt;TestType>::m_a.size() == 1)">
367
+ FAILED:
368
+ REQUIRE( Template_Fixture_2&lt;TestType>::m_a.size() == 1 )
369
+ with expansion:
370
+ 0 == 1
371
+ at Class.tests.cpp:<line number>
372
+ </failure>
373
+ </testCase>
374
+ <testCase name="A TEMPLATE_PRODUCT_TEST_CASE_METHOD based test run that succeeds - Template_Foo&lt;float>" duration="{duration}"/>
375
+ <testCase name="A TEMPLATE_PRODUCT_TEST_CASE_METHOD based test run that succeeds - Template_Foo&lt;int>" duration="{duration}"/>
376
+ <testCase name="A TEMPLATE_PRODUCT_TEST_CASE_METHOD based test run that succeeds - std::vector&lt;float>" duration="{duration}"/>
377
+ <testCase name="A TEMPLATE_PRODUCT_TEST_CASE_METHOD based test run that succeeds - std::vector&lt;int>" duration="{duration}"/>
378
+ <testCase name="A TEMPLATE_PRODUCT_TEST_CASE_METHOD_SIG based test run that fails - Template_Foo_2&lt;float, 6>" duration="{duration}">
379
+ <failure message="REQUIRE(Template_Fixture_2&lt;TestType>{}.m_a.size() &lt; 2)">
380
+ FAILED:
381
+ REQUIRE( Template_Fixture_2&lt;TestType>{}.m_a.size() &lt; 2 )
382
+ with expansion:
383
+ 6 &lt; 2
384
+ at Class.tests.cpp:<line number>
385
+ </failure>
386
+ </testCase>
387
+ <testCase name="A TEMPLATE_PRODUCT_TEST_CASE_METHOD_SIG based test run that fails - Template_Foo_2&lt;int, 2>" duration="{duration}">
388
+ <failure message="REQUIRE(Template_Fixture_2&lt;TestType>{}.m_a.size() &lt; 2)">
389
+ FAILED:
390
+ REQUIRE( Template_Fixture_2&lt;TestType>{}.m_a.size() &lt; 2 )
391
+ with expansion:
392
+ 2 &lt; 2
393
+ at Class.tests.cpp:<line number>
394
+ </failure>
395
+ </testCase>
396
+ <testCase name="A TEMPLATE_PRODUCT_TEST_CASE_METHOD_SIG based test run that fails - std::array&lt;float, 6>" duration="{duration}">
397
+ <failure message="REQUIRE(Template_Fixture_2&lt;TestType>{}.m_a.size() &lt; 2)">
398
+ FAILED:
399
+ REQUIRE( Template_Fixture_2&lt;TestType>{}.m_a.size() &lt; 2 )
400
+ with expansion:
401
+ 6 &lt; 2
402
+ at Class.tests.cpp:<line number>
403
+ </failure>
404
+ </testCase>
405
+ <testCase name="A TEMPLATE_PRODUCT_TEST_CASE_METHOD_SIG based test run that fails - std::array&lt;int, 2>" duration="{duration}">
406
+ <failure message="REQUIRE(Template_Fixture_2&lt;TestType>{}.m_a.size() &lt; 2)">
407
+ FAILED:
408
+ REQUIRE( Template_Fixture_2&lt;TestType>{}.m_a.size() &lt; 2 )
409
+ with expansion:
410
+ 2 &lt; 2
411
+ at Class.tests.cpp:<line number>
412
+ </failure>
413
+ </testCase>
414
+ <testCase name="A TEMPLATE_PRODUCT_TEST_CASE_METHOD_SIG based test run that succeeds - Template_Foo_2&lt;float,6>" duration="{duration}"/>
415
+ <testCase name="A TEMPLATE_PRODUCT_TEST_CASE_METHOD_SIG based test run that succeeds - Template_Foo_2&lt;int,2>" duration="{duration}"/>
416
+ <testCase name="A TEMPLATE_PRODUCT_TEST_CASE_METHOD_SIG based test run that succeeds - std::array&lt;float,6>" duration="{duration}"/>
417
+ <testCase name="A TEMPLATE_PRODUCT_TEST_CASE_METHOD_SIG based test run that succeeds - std::array&lt;int,2>" duration="{duration}"/>
418
+ <testCase name="A TEMPLATE_TEST_CASE_METHOD based test run that fails - double" duration="{duration}">
419
+ <failure message="REQUIRE(Template_Fixture&lt;TestType>::m_a == 2)">
420
+ FAILED:
421
+ REQUIRE( Template_Fixture&lt;TestType>::m_a == 2 )
422
+ with expansion:
423
+ 1.0 == 2
424
+ at Class.tests.cpp:<line number>
425
+ </failure>
426
+ </testCase>
427
+ <testCase name="A TEMPLATE_TEST_CASE_METHOD based test run that fails - float" duration="{duration}">
428
+ <failure message="REQUIRE(Template_Fixture&lt;TestType>::m_a == 2)">
429
+ FAILED:
430
+ REQUIRE( Template_Fixture&lt;TestType>::m_a == 2 )
431
+ with expansion:
432
+ 1.0f == 2
433
+ at Class.tests.cpp:<line number>
434
+ </failure>
435
+ </testCase>
436
+ <testCase name="A TEMPLATE_TEST_CASE_METHOD based test run that fails - int" duration="{duration}">
437
+ <failure message="REQUIRE(Template_Fixture&lt;TestType>::m_a == 2)">
438
+ FAILED:
439
+ REQUIRE( Template_Fixture&lt;TestType>::m_a == 2 )
440
+ with expansion:
441
+ 1 == 2
442
+ at Class.tests.cpp:<line number>
443
+ </failure>
444
+ </testCase>
445
+ <testCase name="A TEMPLATE_TEST_CASE_METHOD based test run that succeeds - double" duration="{duration}"/>
446
+ <testCase name="A TEMPLATE_TEST_CASE_METHOD based test run that succeeds - float" duration="{duration}"/>
447
+ <testCase name="A TEMPLATE_TEST_CASE_METHOD based test run that succeeds - int" duration="{duration}"/>
448
+ <testCase name="A TEMPLATE_TEST_CASE_METHOD_SIG based test run that fails - 1" duration="{duration}">
449
+ <failure message="REQUIRE(Nttp_Fixture&lt;V>::value == 0)">
450
+ FAILED:
451
+ REQUIRE( Nttp_Fixture&lt;V>::value == 0 )
452
+ with expansion:
453
+ 1 == 0
454
+ at Class.tests.cpp:<line number>
455
+ </failure>
456
+ </testCase>
457
+ <testCase name="A TEMPLATE_TEST_CASE_METHOD_SIG based test run that fails - 3" duration="{duration}">
458
+ <failure message="REQUIRE(Nttp_Fixture&lt;V>::value == 0)">
459
+ FAILED:
460
+ REQUIRE( Nttp_Fixture&lt;V>::value == 0 )
461
+ with expansion:
462
+ 3 == 0
463
+ at Class.tests.cpp:<line number>
464
+ </failure>
465
+ </testCase>
466
+ <testCase name="A TEMPLATE_TEST_CASE_METHOD_SIG based test run that fails - 6" duration="{duration}">
467
+ <failure message="REQUIRE(Nttp_Fixture&lt;V>::value == 0)">
468
+ FAILED:
469
+ REQUIRE( Nttp_Fixture&lt;V>::value == 0 )
470
+ with expansion:
471
+ 6 == 0
472
+ at Class.tests.cpp:<line number>
473
+ </failure>
474
+ </testCase>
475
+ <testCase name="A TEMPLATE_TEST_CASE_METHOD_SIG based test run that succeeds - 1" duration="{duration}"/>
476
+ <testCase name="A TEMPLATE_TEST_CASE_METHOD_SIG based test run that succeeds - 3" duration="{duration}"/>
477
+ <testCase name="A TEMPLATE_TEST_CASE_METHOD_SIG based test run that succeeds - 6" duration="{duration}"/>
478
+ <testCase name="A TEST_CASE_METHOD based test run that fails" duration="{duration}">
479
+ <failure message="REQUIRE(m_a == 2)">
480
+ FAILED:
481
+ REQUIRE( m_a == 2 )
482
+ with expansion:
483
+ 1 == 2
484
+ at Class.tests.cpp:<line number>
485
+ </failure>
486
+ </testCase>
487
+ <testCase name="A TEST_CASE_METHOD based test run that succeeds" duration="{duration}"/>
488
+ <testCase name="Template test case method with test types specified inside std::tuple - MyTypes - 0" duration="{duration}"/>
489
+ <testCase name="Template test case method with test types specified inside std::tuple - MyTypes - 1" duration="{duration}"/>
490
+ <testCase name="Template test case method with test types specified inside std::tuple - MyTypes - 2" duration="{duration}"/>
491
+ </file>
492
+ <file path="tests/<exe-name>/UsageTests/Compilation.tests.cpp">
493
+ <testCase name="#1027: Bitfields can be captured" duration="{duration}"/>
494
+ <testCase name="#1147" duration="{duration}"/>
495
+ <testCase name="#1238" duration="{duration}"/>
496
+ <testCase name="#1245" duration="{duration}"/>
497
+ <testCase name="#1319: Sections can have description (even if it is not saved/SectionName" duration="{duration}"/>
498
+ <testCase name="#1403" duration="{duration}"/>
499
+ <testCase name="#1548" duration="{duration}"/>
500
+ <testCase name="#809" duration="{duration}"/>
501
+ <testCase name="#833" duration="{duration}"/>
502
+ <testCase name="#872" duration="{duration}"/>
503
+ <testCase name="Assertion macros support bit operators and bool conversions" duration="{duration}"/>
504
+ <testCase name="Lambdas in assertions" duration="{duration}"/>
505
+ <testCase name="Optionally static assertions" duration="{duration}"/>
506
+ </file>
507
+ <file path="tests/<exe-name>/UsageTests/Condition.tests.cpp">
508
+ <testCase name="'Not' checks that should fail" duration="{duration}">
509
+ <failure message="CHECK(false != false)">
510
+ FAILED:
511
+ CHECK( false != false )
512
+ at Condition.tests.cpp:<line number>
513
+ </failure>
514
+ <failure message="CHECK(true != true)">
515
+ FAILED:
516
+ CHECK( true != true )
517
+ at Condition.tests.cpp:<line number>
518
+ </failure>
519
+ <failure message="CHECK(!true)">
520
+ FAILED:
521
+ CHECK( !true )
522
+ with expansion:
523
+ false
524
+ at Condition.tests.cpp:<line number>
525
+ </failure>
526
+ <failure message="CHECK_FALSE(!(true))">
527
+ FAILED:
528
+ CHECK_FALSE( true )
529
+ with expansion:
530
+ !true
531
+ at Condition.tests.cpp:<line number>
532
+ </failure>
533
+ <failure message="CHECK(!trueValue)">
534
+ FAILED:
535
+ CHECK( !trueValue )
536
+ with expansion:
537
+ false
538
+ at Condition.tests.cpp:<line number>
539
+ </failure>
540
+ <failure message="CHECK_FALSE(!(trueValue))">
541
+ FAILED:
542
+ CHECK_FALSE( trueValue )
543
+ with expansion:
544
+ !true
545
+ at Condition.tests.cpp:<line number>
546
+ </failure>
547
+ <failure message="CHECK(!(1 == 1))">
548
+ FAILED:
549
+ CHECK( !(1 == 1) )
550
+ with expansion:
551
+ false
552
+ at Condition.tests.cpp:<line number>
553
+ </failure>
554
+ <failure message="CHECK_FALSE(!(1 == 1))">
555
+ FAILED:
556
+ CHECK_FALSE( 1 == 1 )
557
+ at Condition.tests.cpp:<line number>
558
+ </failure>
559
+ </testCase>
560
+ <testCase name="'Not' checks that should succeed" duration="{duration}"/>
561
+ <testCase name="Comparisons between ints where one side is computed" duration="{duration}"/>
562
+ <testCase name="Comparisons between unsigned ints and negative signed ints match c++ standard behaviour" duration="{duration}"/>
563
+ <testCase name="Comparisons with int literals don't warn when mixing signed/ unsigned" duration="{duration}"/>
564
+ <testCase name="Equality checks that should fail" duration="{duration}">
565
+ <skipped message="CHECK(data.int_seven == 6)">
566
+ FAILED:
567
+ CHECK( data.int_seven == 6 )
568
+ with expansion:
569
+ 7 == 6
570
+ at Condition.tests.cpp:<line number>
571
+ </skipped>
572
+ <skipped message="CHECK(data.int_seven == 8)">
573
+ FAILED:
574
+ CHECK( data.int_seven == 8 )
575
+ with expansion:
576
+ 7 == 8
577
+ at Condition.tests.cpp:<line number>
578
+ </skipped>
579
+ <skipped message="CHECK(data.int_seven == 0)">
580
+ FAILED:
581
+ CHECK( data.int_seven == 0 )
582
+ with expansion:
583
+ 7 == 0
584
+ at Condition.tests.cpp:<line number>
585
+ </skipped>
586
+ <skipped message="CHECK(data.float_nine_point_one == Approx( 9.11f ))">
587
+ FAILED:
588
+ CHECK( data.float_nine_point_one == Approx( 9.11f ) )
589
+ with expansion:
590
+ 9.1f == Approx( 9.1099996567 )
591
+ at Condition.tests.cpp:<line number>
592
+ </skipped>
593
+ <skipped message="CHECK(data.float_nine_point_one == Approx( 9.0f ))">
594
+ FAILED:
595
+ CHECK( data.float_nine_point_one == Approx( 9.0f ) )
596
+ with expansion:
597
+ 9.1f == Approx( 9.0 )
598
+ at Condition.tests.cpp:<line number>
599
+ </skipped>
600
+ <skipped message="CHECK(data.float_nine_point_one == Approx( 1 ))">
601
+ FAILED:
602
+ CHECK( data.float_nine_point_one == Approx( 1 ) )
603
+ with expansion:
604
+ 9.1f == Approx( 1.0 )
605
+ at Condition.tests.cpp:<line number>
606
+ </skipped>
607
+ <skipped message="CHECK(data.float_nine_point_one == Approx( 0 ))">
608
+ FAILED:
609
+ CHECK( data.float_nine_point_one == Approx( 0 ) )
610
+ with expansion:
611
+ 9.1f == Approx( 0.0 )
612
+ at Condition.tests.cpp:<line number>
613
+ </skipped>
614
+ <skipped message="CHECK(data.double_pi == Approx( 3.1415 ))">
615
+ FAILED:
616
+ CHECK( data.double_pi == Approx( 3.1415 ) )
617
+ with expansion:
618
+ 3.1415926535 == Approx( 3.1415 )
619
+ at Condition.tests.cpp:<line number>
620
+ </skipped>
621
+ <skipped message="CHECK(data.str_hello == &quot;goodbye&quot;)">
622
+ FAILED:
623
+ CHECK( data.str_hello == "goodbye" )
624
+ with expansion:
625
+ "hello" == "goodbye"
626
+ at Condition.tests.cpp:<line number>
627
+ </skipped>
628
+ <skipped message="CHECK(data.str_hello == &quot;hell&quot;)">
629
+ FAILED:
630
+ CHECK( data.str_hello == "hell" )
631
+ with expansion:
632
+ "hello" == "hell"
633
+ at Condition.tests.cpp:<line number>
634
+ </skipped>
635
+ <skipped message="CHECK(data.str_hello == &quot;hello1&quot;)">
636
+ FAILED:
637
+ CHECK( data.str_hello == "hello1" )
638
+ with expansion:
639
+ "hello" == "hello1"
640
+ at Condition.tests.cpp:<line number>
641
+ </skipped>
642
+ <skipped message="CHECK(data.str_hello.size() == 6)">
643
+ FAILED:
644
+ CHECK( data.str_hello.size() == 6 )
645
+ with expansion:
646
+ 5 == 6
647
+ at Condition.tests.cpp:<line number>
648
+ </skipped>
649
+ <skipped message="CHECK(x == Approx( 1.301 ))">
650
+ FAILED:
651
+ CHECK( x == Approx( 1.301 ) )
652
+ with expansion:
653
+ 1.3 == Approx( 1.301 )
654
+ at Condition.tests.cpp:<line number>
655
+ </skipped>
656
+ </testCase>
657
+ <testCase name="Equality checks that should succeed" duration="{duration}"/>
658
+ <testCase name="Inequality checks that should fail" duration="{duration}">
659
+ <skipped message="CHECK(data.int_seven != 7)">
660
+ FAILED:
661
+ CHECK( data.int_seven != 7 )
662
+ with expansion:
663
+ 7 != 7
664
+ at Condition.tests.cpp:<line number>
665
+ </skipped>
666
+ <skipped message="CHECK(data.float_nine_point_one != Approx( 9.1f ))">
667
+ FAILED:
668
+ CHECK( data.float_nine_point_one != Approx( 9.1f ) )
669
+ with expansion:
670
+ 9.1f != Approx( 9.1000003815 )
671
+ at Condition.tests.cpp:<line number>
672
+ </skipped>
673
+ <skipped message="CHECK(data.double_pi != Approx( 3.1415926535 ))">
674
+ FAILED:
675
+ CHECK( data.double_pi != Approx( 3.1415926535 ) )
676
+ with expansion:
677
+ 3.1415926535 != Approx( 3.1415926535 )
678
+ at Condition.tests.cpp:<line number>
679
+ </skipped>
680
+ <skipped message="CHECK(data.str_hello != &quot;hello&quot;)">
681
+ FAILED:
682
+ CHECK( data.str_hello != "hello" )
683
+ with expansion:
684
+ "hello" != "hello"
685
+ at Condition.tests.cpp:<line number>
686
+ </skipped>
687
+ <skipped message="CHECK(data.str_hello.size() != 5)">
688
+ FAILED:
689
+ CHECK( data.str_hello.size() != 5 )
690
+ with expansion:
691
+ 5 != 5
692
+ at Condition.tests.cpp:<line number>
693
+ </skipped>
694
+ </testCase>
695
+ <testCase name="Inequality checks that should succeed" duration="{duration}"/>
696
+ <testCase name="Mayfail test case with nested sections/1/A" duration="{duration}">
697
+ <skipped message="FAIL()">
698
+ FAILED:
699
+ at Condition.tests.cpp:<line number>
700
+ </skipped>
701
+ </testCase>
702
+ <testCase name="Mayfail test case with nested sections/2/A" duration="{duration}">
703
+ <skipped message="FAIL()">
704
+ FAILED:
705
+ at Condition.tests.cpp:<line number>
706
+ </skipped>
707
+ </testCase>
708
+ <testCase name="Mayfail test case with nested sections/1/B" duration="{duration}">
709
+ <skipped message="FAIL()">
710
+ FAILED:
711
+ at Condition.tests.cpp:<line number>
712
+ </skipped>
713
+ </testCase>
714
+ <testCase name="Mayfail test case with nested sections/2/B" duration="{duration}">
715
+ <skipped message="FAIL()">
716
+ FAILED:
717
+ at Condition.tests.cpp:<line number>
718
+ </skipped>
719
+ </testCase>
720
+ <testCase name="Ordering comparison checks that should fail" duration="{duration}">
721
+ <failure message="CHECK(data.int_seven > 7)">
722
+ FAILED:
723
+ CHECK( data.int_seven > 7 )
724
+ with expansion:
725
+ 7 > 7
726
+ at Condition.tests.cpp:<line number>
727
+ </failure>
728
+ <failure message="CHECK(data.int_seven &lt; 7)">
729
+ FAILED:
730
+ CHECK( data.int_seven &lt; 7 )
731
+ with expansion:
732
+ 7 &lt; 7
733
+ at Condition.tests.cpp:<line number>
734
+ </failure>
735
+ <failure message="CHECK(data.int_seven > 8)">
736
+ FAILED:
737
+ CHECK( data.int_seven > 8 )
738
+ with expansion:
739
+ 7 > 8
740
+ at Condition.tests.cpp:<line number>
741
+ </failure>
742
+ <failure message="CHECK(data.int_seven &lt; 6)">
743
+ FAILED:
744
+ CHECK( data.int_seven &lt; 6 )
745
+ with expansion:
746
+ 7 &lt; 6
747
+ at Condition.tests.cpp:<line number>
748
+ </failure>
749
+ <failure message="CHECK(data.int_seven &lt; 0)">
750
+ FAILED:
751
+ CHECK( data.int_seven &lt; 0 )
752
+ with expansion:
753
+ 7 &lt; 0
754
+ at Condition.tests.cpp:<line number>
755
+ </failure>
756
+ <failure message="CHECK(data.int_seven &lt; -1)">
757
+ FAILED:
758
+ CHECK( data.int_seven &lt; -1 )
759
+ with expansion:
760
+ 7 &lt; -1
761
+ at Condition.tests.cpp:<line number>
762
+ </failure>
763
+ <failure message="CHECK(data.int_seven >= 8)">
764
+ FAILED:
765
+ CHECK( data.int_seven >= 8 )
766
+ with expansion:
767
+ 7 >= 8
768
+ at Condition.tests.cpp:<line number>
769
+ </failure>
770
+ <failure message="CHECK(data.int_seven &lt;= 6)">
771
+ FAILED:
772
+ CHECK( data.int_seven &lt;= 6 )
773
+ with expansion:
774
+ 7 &lt;= 6
775
+ at Condition.tests.cpp:<line number>
776
+ </failure>
777
+ <failure message="CHECK(data.float_nine_point_one &lt; 9)">
778
+ FAILED:
779
+ CHECK( data.float_nine_point_one &lt; 9 )
780
+ with expansion:
781
+ 9.1f &lt; 9
782
+ at Condition.tests.cpp:<line number>
783
+ </failure>
784
+ <failure message="CHECK(data.float_nine_point_one > 10)">
785
+ FAILED:
786
+ CHECK( data.float_nine_point_one > 10 )
787
+ with expansion:
788
+ 9.1f > 10
789
+ at Condition.tests.cpp:<line number>
790
+ </failure>
791
+ <failure message="CHECK(data.float_nine_point_one > 9.2)">
792
+ FAILED:
793
+ CHECK( data.float_nine_point_one > 9.2 )
794
+ with expansion:
795
+ 9.1f > 9.2
796
+ at Condition.tests.cpp:<line number>
797
+ </failure>
798
+ <failure message="CHECK(data.str_hello > &quot;hello&quot;)">
799
+ FAILED:
800
+ CHECK( data.str_hello > "hello" )
801
+ with expansion:
802
+ "hello" > "hello"
803
+ at Condition.tests.cpp:<line number>
804
+ </failure>
805
+ <failure message="CHECK(data.str_hello &lt; &quot;hello&quot;)">
806
+ FAILED:
807
+ CHECK( data.str_hello &lt; "hello" )
808
+ with expansion:
809
+ "hello" &lt; "hello"
810
+ at Condition.tests.cpp:<line number>
811
+ </failure>
812
+ <failure message="CHECK(data.str_hello > &quot;hellp&quot;)">
813
+ FAILED:
814
+ CHECK( data.str_hello > "hellp" )
815
+ with expansion:
816
+ "hello" > "hellp"
817
+ at Condition.tests.cpp:<line number>
818
+ </failure>
819
+ <failure message="CHECK(data.str_hello > &quot;z&quot;)">
820
+ FAILED:
821
+ CHECK( data.str_hello > "z" )
822
+ with expansion:
823
+ "hello" > "z"
824
+ at Condition.tests.cpp:<line number>
825
+ </failure>
826
+ <failure message="CHECK(data.str_hello &lt; &quot;hellm&quot;)">
827
+ FAILED:
828
+ CHECK( data.str_hello &lt; "hellm" )
829
+ with expansion:
830
+ "hello" &lt; "hellm"
831
+ at Condition.tests.cpp:<line number>
832
+ </failure>
833
+ <failure message="CHECK(data.str_hello &lt; &quot;a&quot;)">
834
+ FAILED:
835
+ CHECK( data.str_hello &lt; "a" )
836
+ with expansion:
837
+ "hello" &lt; "a"
838
+ at Condition.tests.cpp:<line number>
839
+ </failure>
840
+ <failure message="CHECK(data.str_hello >= &quot;z&quot;)">
841
+ FAILED:
842
+ CHECK( data.str_hello >= "z" )
843
+ with expansion:
844
+ "hello" >= "z"
845
+ at Condition.tests.cpp:<line number>
846
+ </failure>
847
+ <failure message="CHECK(data.str_hello &lt;= &quot;a&quot;)">
848
+ FAILED:
849
+ CHECK( data.str_hello &lt;= "a" )
850
+ with expansion:
851
+ "hello" &lt;= "a"
852
+ at Condition.tests.cpp:<line number>
853
+ </failure>
854
+ </testCase>
855
+ <testCase name="Ordering comparison checks that should succeed" duration="{duration}"/>
856
+ <testCase name="Pointers can be compared to null" duration="{duration}"/>
857
+ <testCase name="comparisons between const int variables" duration="{duration}"/>
858
+ <testCase name="comparisons between int variables" duration="{duration}"/>
859
+ </file>
860
+ <file path="tests/<exe-name>/UsageTests/Decomposition.tests.cpp">
861
+ <testCase name="Reconstruction should be based on stringification: #914" duration="{duration}">
862
+ <failure message="CHECK(truthy(false))">
863
+ FAILED:
864
+ CHECK( truthy(false) )
865
+ with expansion:
866
+ Hey, its truthy!
867
+ at Decomposition.tests.cpp:<line number>
868
+ </failure>
869
+ </testCase>
870
+ </file>
871
+ <file path="tests/<exe-name>/UsageTests/EnumToString.tests.cpp">
872
+ <testCase name="Enums can quickly have stringification enabled using REGISTER_ENUM" duration="{duration}"/>
873
+ <testCase name="Enums in namespaces can quickly have stringification enabled using REGISTER_ENUM" duration="{duration}"/>
874
+ <testCase name="toString(enum class w/operator&lt;&lt;)" duration="{duration}"/>
875
+ <testCase name="toString(enum class)" duration="{duration}"/>
876
+ <testCase name="toString(enum w/operator&lt;&lt;)" duration="{duration}"/>
877
+ <testCase name="toString(enum)" duration="{duration}"/>
878
+ </file>
879
+ <file path="tests/<exe-name>/UsageTests/Exception.tests.cpp">
880
+ <testCase name="#748 - captures with unexpected exceptions/outside assertions" duration="{duration}">
881
+ <skipped message="TEST_CASE()">
882
+ FAILED:
883
+ expected exception
884
+ answer := 42
885
+ at Exception.tests.cpp:<line number>
886
+ </skipped>
887
+ </testCase>
888
+ <testCase name="#748 - captures with unexpected exceptions/inside REQUIRE_NOTHROW" duration="{duration}">
889
+ <skipped message="REQUIRE_NOTHROW(thisThrows())">
890
+ FAILED:
891
+ REQUIRE_NOTHROW( thisThrows() )
892
+ expected exception
893
+ answer := 42
894
+ at Exception.tests.cpp:<line number>
895
+ </skipped>
896
+ </testCase>
897
+ <testCase name="#748 - captures with unexpected exceptions/inside REQUIRE_THROWS" duration="{duration}"/>
898
+ <testCase name="An unchecked exception reports the line of the last assertion" duration="{duration}">
899
+ <error message="({Unknown expression after the reported line})">
900
+ FAILED:
901
+ {Unknown expression after the reported line}
902
+ unexpected exception
903
+ at Exception.tests.cpp:<line number>
904
+ </error>
905
+ </testCase>
906
+ <testCase name="Custom exceptions can be translated when testing for nothrow" duration="{duration}">
907
+ <error message="REQUIRE_NOTHROW(throwCustom())">
908
+ FAILED:
909
+ REQUIRE_NOTHROW( throwCustom() )
910
+ custom exception - not std
911
+ at Exception.tests.cpp:<line number>
912
+ </error>
913
+ </testCase>
914
+ <testCase name="Custom exceptions can be translated when testing for throwing as something else" duration="{duration}">
915
+ <error message="REQUIRE_THROWS_AS(throwCustom(), std::exception)">
916
+ FAILED:
917
+ REQUIRE_THROWS_AS( throwCustom(), std::exception )
918
+ custom exception - not std
919
+ at Exception.tests.cpp:<line number>
920
+ </error>
921
+ </testCase>
922
+ <testCase name="Custom std-exceptions can be custom translated" duration="{duration}">
923
+ <error message="TEST_CASE()">
924
+ FAILED:
925
+ custom std exception
926
+ at Exception.tests.cpp:<line number>
927
+ </error>
928
+ </testCase>
929
+ <testCase name="Exception messages can be tested for/exact match" duration="{duration}"/>
930
+ <testCase name="Exception messages can be tested for/different case" duration="{duration}"/>
931
+ <testCase name="Exception messages can be tested for/wildcarded" duration="{duration}"/>
932
+ <testCase name="Expected exceptions that don't throw or unexpected exceptions fail the test" duration="{duration}">
933
+ <error message="CHECK_THROWS_AS(thisThrows(), std::string)">
934
+ FAILED:
935
+ CHECK_THROWS_AS( thisThrows(), std::string )
936
+ expected exception
937
+ at Exception.tests.cpp:<line number>
938
+ </error>
939
+ <failure message="CHECK_THROWS_AS(thisDoesntThrow(), std::domain_error)">
940
+ FAILED:
941
+ CHECK_THROWS_AS( thisDoesntThrow(), std::domain_error )
942
+ at Exception.tests.cpp:<line number>
943
+ </failure>
944
+ <error message="CHECK_NOTHROW(thisThrows())">
945
+ FAILED:
946
+ CHECK_NOTHROW( thisThrows() )
947
+ expected exception
948
+ at Exception.tests.cpp:<line number>
949
+ </error>
950
+ </testCase>
951
+ <testCase name="Mismatching exception messages failing the test" duration="{duration}">
952
+ <failure message="REQUIRE_THROWS_WITH(thisThrows(), &quot;should fail&quot;)">
953
+ FAILED:
954
+ REQUIRE_THROWS_WITH( thisThrows(), "should fail" )
955
+ with expansion:
956
+ "expected exception" equals: "should fail"
957
+ at Exception.tests.cpp:<line number>
958
+ </failure>
959
+ </testCase>
960
+ <testCase name="Non-std exceptions can be translated" duration="{duration}">
961
+ <error message="TEST_CASE()">
962
+ FAILED:
963
+ custom exception
964
+ at Exception.tests.cpp:<line number>
965
+ </error>
966
+ </testCase>
967
+ <testCase name="Thrown string literals are translated" duration="{duration}">
968
+ <error message="TEST_CASE()">
969
+ FAILED:
970
+ For some reason someone is throwing a string literal!
971
+ at Exception.tests.cpp:<line number>
972
+ </error>
973
+ </testCase>
974
+ <testCase name="Unexpected exceptions can be translated" duration="{duration}">
975
+ <error message="TEST_CASE()">
976
+ FAILED:
977
+ 3.14
978
+ at Exception.tests.cpp:<line number>
979
+ </error>
980
+ </testCase>
981
+ <testCase name="When checked exceptions are thrown they can be expected or unexpected" duration="{duration}"/>
982
+ <testCase name="When unchecked exceptions are thrown directly they are always failures" duration="{duration}">
983
+ <error message="TEST_CASE()">
984
+ FAILED:
985
+ unexpected exception
986
+ at Exception.tests.cpp:<line number>
987
+ </error>
988
+ </testCase>
989
+ <testCase name="When unchecked exceptions are thrown during a CHECK the test should continue" duration="{duration}">
990
+ <error message="CHECK(thisThrows() == 0)">
991
+ FAILED:
992
+ CHECK( thisThrows() == 0 )
993
+ expected exception
994
+ at Exception.tests.cpp:<line number>
995
+ </error>
996
+ </testCase>
997
+ <testCase name="When unchecked exceptions are thrown during a REQUIRE the test should abort fail" duration="{duration}">
998
+ <error message="REQUIRE(thisThrows() == 0)">
999
+ FAILED:
1000
+ REQUIRE( thisThrows() == 0 )
1001
+ expected exception
1002
+ at Exception.tests.cpp:<line number>
1003
+ </error>
1004
+ </testCase>
1005
+ <testCase name="When unchecked exceptions are thrown from functions they are always failures" duration="{duration}">
1006
+ <error message="CHECK(thisThrows() == 0)">
1007
+ FAILED:
1008
+ CHECK( thisThrows() == 0 )
1009
+ expected exception
1010
+ at Exception.tests.cpp:<line number>
1011
+ </error>
1012
+ </testCase>
1013
+ <testCase name="When unchecked exceptions are thrown from sections they are always failures/section name" duration="{duration}">
1014
+ <error message="TEST_CASE()">
1015
+ FAILED:
1016
+ unexpected exception
1017
+ at Exception.tests.cpp:<line number>
1018
+ </error>
1019
+ </testCase>
1020
+ <testCase name="thrown std::strings are translated" duration="{duration}">
1021
+ <error message="TEST_CASE()">
1022
+ FAILED:
1023
+ Why would you throw a std::string?
1024
+ at Exception.tests.cpp:<line number>
1025
+ </error>
1026
+ </testCase>
1027
+ </file>
1028
+ <file path="tests/<exe-name>/UsageTests/Generators.tests.cpp">
1029
+ <testCase name="#1913 - GENERATE inside a for loop should not keep recreating the generator" duration="{duration}"/>
1030
+ <testCase name="#1913 - GENERATEs can share a line" duration="{duration}"/>
1031
+ <testCase name="#2615 - Throwing in constructor generator fails test case but does not abort" duration="{duration}">
1032
+ <skipped message="TEST_CASE()">
1033
+ FAILED:
1034
+ failure to init
1035
+ at Generators.tests.cpp:<line number>
1036
+ </skipped>
1037
+ </testCase>
1038
+ <testCase name="3x3x3 ints" duration="{duration}"/>
1039
+ <testCase name="Copy and then generate a range/from var and iterators" duration="{duration}"/>
1040
+ <testCase name="Copy and then generate a range/From a temporary container" duration="{duration}"/>
1041
+ <testCase name="Copy and then generate a range/Final validation" duration="{duration}"/>
1042
+ <testCase name="Generators -- adapters/Filtering by predicate/Basic usage" duration="{duration}"/>
1043
+ <testCase name="Generators -- adapters/Filtering by predicate/Throws if there are no matching values" duration="{duration}"/>
1044
+ <testCase name="Generators -- adapters/Shortening a range" duration="{duration}"/>
1045
+ <testCase name="Generators -- adapters/Transforming elements/Same type" duration="{duration}"/>
1046
+ <testCase name="Generators -- adapters/Transforming elements/Different type" duration="{duration}"/>
1047
+ <testCase name="Generators -- adapters/Transforming elements/Different deduced type" duration="{duration}"/>
1048
+ <testCase name="Generators -- adapters/Repeating a generator" duration="{duration}"/>
1049
+ <testCase name="Generators -- adapters/Chunking a generator into sized pieces/Number of elements in source is divisible by chunk size" duration="{duration}"/>
1050
+ <testCase name="Generators -- adapters/Chunking a generator into sized pieces/Number of elements in source is not divisible by chunk size" duration="{duration}"/>
1051
+ <testCase name="Generators -- adapters/Chunking a generator into sized pieces/Chunk size of zero" duration="{duration}"/>
1052
+ <testCase name="Generators -- adapters/Chunking a generator into sized pieces/Throws on too small generators" duration="{duration}"/>
1053
+ <testCase name="Generators -- simple/one" duration="{duration}"/>
1054
+ <testCase name="Generators -- simple/two" duration="{duration}"/>
1055
+ <testCase name="Nested generators and captured variables" duration="{duration}"/>
1056
+ <testCase name="strlen3" duration="{duration}"/>
1057
+ <testCase name="tables" duration="{duration}"/>
1058
+ </file>
1059
+ <file path="tests/<exe-name>/UsageTests/Matchers.tests.cpp">
1060
+ <testCase name="#2152 - ULP checks between differently signed values were wrong - double" duration="{duration}"/>
1061
+ <testCase name="#2152 - ULP checks between differently signed values were wrong - float" duration="{duration}"/>
1062
+ <testCase name="Arbitrary predicate matcher/Function pointer" duration="{duration}"/>
1063
+ <testCase name="Arbitrary predicate matcher/Lambdas + different type" duration="{duration}"/>
1064
+ <testCase name="Combining MatchAllOfGeneric does not nest" duration="{duration}"/>
1065
+ <testCase name="Combining MatchAnyOfGeneric does not nest" duration="{duration}"/>
1066
+ <testCase name="Combining MatchNotOfGeneric does not nest" duration="{duration}"/>
1067
+ <testCase name="Combining concrete matchers does not use templated matchers" duration="{duration}"/>
1068
+ <testCase name="Combining only templated matchers" duration="{duration}"/>
1069
+ <testCase name="Combining templated and concrete matchers" duration="{duration}"/>
1070
+ <testCase name="Combining templated matchers" duration="{duration}"/>
1071
+ <testCase name="Composed generic matchers shortcircuit/MatchAllOf" duration="{duration}"/>
1072
+ <testCase name="Composed generic matchers shortcircuit/MatchAnyOf" duration="{duration}"/>
1073
+ <testCase name="Composed matchers shortcircuit/MatchAllOf" duration="{duration}"/>
1074
+ <testCase name="Composed matchers shortcircuit/MatchAnyOf" duration="{duration}"/>
1075
+ <testCase name="Contains string matcher" duration="{duration}">
1076
+ <failure message="CHECK_THAT(testStringForMatching(), ContainsSubstring( &quot;not there&quot;, Catch::CaseSensitive::No ))">
1077
+ FAILED:
1078
+ CHECK_THAT( testStringForMatching(), ContainsSubstring( "not there", Catch::CaseSensitive::No ) )
1079
+ with expansion:
1080
+ "this string contains 'abc' as a substring" contains: "not there" (case insensitive)
1081
+ at Matchers.tests.cpp:<line number>
1082
+ </failure>
1083
+ <failure message="CHECK_THAT(testStringForMatching(), ContainsSubstring( &quot;STRING&quot; ))">
1084
+ FAILED:
1085
+ CHECK_THAT( testStringForMatching(), ContainsSubstring( "STRING" ) )
1086
+ with expansion:
1087
+ "this string contains 'abc' as a substring" contains: "STRING"
1088
+ at Matchers.tests.cpp:<line number>
1089
+ </failure>
1090
+ </testCase>
1091
+ <testCase name="EndsWith string matcher" duration="{duration}">
1092
+ <failure message="CHECK_THAT(testStringForMatching(), EndsWith( &quot;Substring&quot; ))">
1093
+ FAILED:
1094
+ CHECK_THAT( testStringForMatching(), EndsWith( "Substring" ) )
1095
+ with expansion:
1096
+ "this string contains 'abc' as a substring" ends with: "Substring"
1097
+ at Matchers.tests.cpp:<line number>
1098
+ </failure>
1099
+ <failure message="CHECK_THAT(testStringForMatching(), EndsWith( &quot;this&quot;, Catch::CaseSensitive::No ))">
1100
+ FAILED:
1101
+ CHECK_THAT( testStringForMatching(), EndsWith( "this", Catch::CaseSensitive::No ) )
1102
+ with expansion:
1103
+ "this string contains 'abc' as a substring" ends with: "this" (case insensitive)
1104
+ at Matchers.tests.cpp:<line number>
1105
+ </failure>
1106
+ </testCase>
1107
+ <testCase name="Equals" duration="{duration}"/>
1108
+ <testCase name="Equals string matcher" duration="{duration}">
1109
+ <failure message="CHECK_THAT(testStringForMatching(), Equals( &quot;this string contains 'ABC' as a substring&quot; ))">
1110
+ FAILED:
1111
+ CHECK_THAT( testStringForMatching(), Equals( "this string contains 'ABC' as a substring" ) )
1112
+ with expansion:
1113
+ "this string contains 'abc' as a substring" equals: "this string contains 'ABC' as a substring"
1114
+ at Matchers.tests.cpp:<line number>
1115
+ </failure>
1116
+ <failure message="CHECK_THAT(testStringForMatching(), Equals( &quot;something else&quot;, Catch::CaseSensitive::No ))">
1117
+ FAILED:
1118
+ CHECK_THAT( testStringForMatching(), Equals( "something else", Catch::CaseSensitive::No ) )
1119
+ with expansion:
1120
+ "this string contains 'abc' as a substring" equals: "something else" (case insensitive)
1121
+ at Matchers.tests.cpp:<line number>
1122
+ </failure>
1123
+ </testCase>
1124
+ <testCase name="Exception matchers that fail/No exception" duration="{duration}">
1125
+ <failure message="CHECK_THROWS_MATCHES(doesNotThrow(), SpecialException, ExceptionMatcher{ 1 })">
1126
+ FAILED:
1127
+ CHECK_THROWS_MATCHES( doesNotThrow(), SpecialException, ExceptionMatcher{ 1 } )
1128
+ at Matchers.tests.cpp:<line number>
1129
+ </failure>
1130
+ <failure message="REQUIRE_THROWS_MATCHES(doesNotThrow(), SpecialException, ExceptionMatcher{ 1 })">
1131
+ FAILED:
1132
+ REQUIRE_THROWS_MATCHES( doesNotThrow(), SpecialException, ExceptionMatcher{ 1 } )
1133
+ at Matchers.tests.cpp:<line number>
1134
+ </failure>
1135
+ </testCase>
1136
+ <testCase name="Exception matchers that fail/Type mismatch" duration="{duration}">
1137
+ <error message="CHECK_THROWS_MATCHES(throwsAsInt( 1 ), SpecialException, ExceptionMatcher{ 1 })">
1138
+ FAILED:
1139
+ CHECK_THROWS_MATCHES( throwsAsInt( 1 ), SpecialException, ExceptionMatcher{ 1 } )
1140
+ Unknown exception
1141
+ at Matchers.tests.cpp:<line number>
1142
+ </error>
1143
+ <error message="REQUIRE_THROWS_MATCHES(throwsAsInt( 1 ), SpecialException, ExceptionMatcher{ 1 })">
1144
+ FAILED:
1145
+ REQUIRE_THROWS_MATCHES( throwsAsInt( 1 ), SpecialException, ExceptionMatcher{ 1 } )
1146
+ Unknown exception
1147
+ at Matchers.tests.cpp:<line number>
1148
+ </error>
1149
+ </testCase>
1150
+ <testCase name="Exception matchers that fail/Contents are wrong" duration="{duration}">
1151
+ <failure message="CHECK_THROWS_MATCHES(throwsSpecialException( 3 ), SpecialException, ExceptionMatcher{ 1 })">
1152
+ FAILED:
1153
+ CHECK_THROWS_MATCHES( throwsSpecialException( 3 ), SpecialException, ExceptionMatcher{ 1 } )
1154
+ with expansion:
1155
+ SpecialException::what special exception has value of 1
1156
+ at Matchers.tests.cpp:<line number>
1157
+ </failure>
1158
+ <failure message="REQUIRE_THROWS_MATCHES(throwsSpecialException( 4 ), SpecialException, ExceptionMatcher{ 1 })">
1159
+ FAILED:
1160
+ REQUIRE_THROWS_MATCHES( throwsSpecialException( 4 ), SpecialException, ExceptionMatcher{ 1 } )
1161
+ with expansion:
1162
+ SpecialException::what special exception has value of 1
1163
+ at Matchers.tests.cpp:<line number>
1164
+ </failure>
1165
+ </testCase>
1166
+ <testCase name="Exception matchers that succeed" duration="{duration}"/>
1167
+ <testCase name="Exception message can be matched" duration="{duration}"/>
1168
+ <testCase name="Exceptions matchers" duration="{duration}"/>
1169
+ <testCase name="Floating point matchers: double/Relative" duration="{duration}"/>
1170
+ <testCase name="Floating point matchers: double/Relative/Some subnormal values" duration="{duration}"/>
1171
+ <testCase name="Floating point matchers: double/Margin" duration="{duration}"/>
1172
+ <testCase name="Floating point matchers: double/ULPs" duration="{duration}"/>
1173
+ <testCase name="Floating point matchers: double/Composed" duration="{duration}"/>
1174
+ <testCase name="Floating point matchers: double/Constructor validation" duration="{duration}"/>
1175
+ <testCase name="Floating point matchers: double/IsNaN" duration="{duration}"/>
1176
+ <testCase name="Floating point matchers: float/Relative" duration="{duration}"/>
1177
+ <testCase name="Floating point matchers: float/Relative/Some subnormal values" duration="{duration}"/>
1178
+ <testCase name="Floating point matchers: float/Margin" duration="{duration}"/>
1179
+ <testCase name="Floating point matchers: float/ULPs" duration="{duration}"/>
1180
+ <testCase name="Floating point matchers: float/Composed" duration="{duration}"/>
1181
+ <testCase name="Floating point matchers: float/Constructor validation" duration="{duration}"/>
1182
+ <testCase name="Floating point matchers: float/IsNaN" duration="{duration}"/>
1183
+ <testCase name="Matchers can be (AllOf) composed with the &amp;&amp; operator" duration="{duration}"/>
1184
+ <testCase name="Matchers can be (AnyOf) composed with the || operator" duration="{duration}"/>
1185
+ <testCase name="Matchers can be composed with both &amp;&amp; and ||" duration="{duration}"/>
1186
+ <testCase name="Matchers can be composed with both &amp;&amp; and || - failing" duration="{duration}">
1187
+ <failure message="CHECK_THAT(testStringForMatching(), ( ContainsSubstring( &quot;string&quot; ) || ContainsSubstring( &quot;different&quot; ) ) &amp;&amp; ContainsSubstring( &quot;random&quot; ))">
1188
+ FAILED:
1189
+ CHECK_THAT( testStringForMatching(), ( ContainsSubstring( "string" ) || ContainsSubstring( "different" ) ) &amp;&amp; ContainsSubstring( "random" ) )
1190
+ with expansion:
1191
+ "this string contains 'abc' as a substring" ( ( contains: "string" or contains: "different" ) and contains: "random" )
1192
+ at Matchers.tests.cpp:<line number>
1193
+ </failure>
1194
+ </testCase>
1195
+ <testCase name="Matchers can be negated (Not) with the ! operator" duration="{duration}"/>
1196
+ <testCase name="Matchers can be negated (Not) with the ! operator - failing" duration="{duration}">
1197
+ <failure message="CHECK_THAT(testStringForMatching(), !ContainsSubstring( &quot;substring&quot; ))">
1198
+ FAILED:
1199
+ CHECK_THAT( testStringForMatching(), !ContainsSubstring( "substring" ) )
1200
+ with expansion:
1201
+ "this string contains 'abc' as a substring" not contains: "substring"
1202
+ at Matchers.tests.cpp:<line number>
1203
+ </failure>
1204
+ </testCase>
1205
+ <testCase name="Overloaded comma or address-of operators are not used" duration="{duration}"/>
1206
+ <testCase name="Predicate matcher can accept const char*" duration="{duration}"/>
1207
+ <testCase name="Regex string matcher" duration="{duration}">
1208
+ <failure message="CHECK_THAT(testStringForMatching(), Matches( &quot;this STRING contains 'abc' as a substring&quot; ))">
1209
+ FAILED:
1210
+ CHECK_THAT( testStringForMatching(), Matches( "this STRING contains 'abc' as a substring" ) )
1211
+ with expansion:
1212
+ "this string contains 'abc' as a substring" matches "this STRING contains 'abc' as a substring" case sensitively
1213
+ at Matchers.tests.cpp:<line number>
1214
+ </failure>
1215
+ <failure message="CHECK_THAT(testStringForMatching(), Matches( &quot;contains 'abc' as a substring&quot; ))">
1216
+ FAILED:
1217
+ CHECK_THAT( testStringForMatching(), Matches( "contains 'abc' as a substring" ) )
1218
+ with expansion:
1219
+ "this string contains 'abc' as a substring" matches "contains 'abc' as a substring" case sensitively
1220
+ at Matchers.tests.cpp:<line number>
1221
+ </failure>
1222
+ <failure message="CHECK_THAT(testStringForMatching(), Matches( &quot;this string contains 'abc' as a&quot; ))">
1223
+ FAILED:
1224
+ CHECK_THAT( testStringForMatching(), Matches( "this string contains 'abc' as a" ) )
1225
+ with expansion:
1226
+ "this string contains 'abc' as a substring" matches "this string contains 'abc' as a" case sensitively
1227
+ at Matchers.tests.cpp:<line number>
1228
+ </failure>
1229
+ </testCase>
1230
+ <testCase name="Regression test #1" duration="{duration}"/>
1231
+ <testCase name="StartsWith string matcher" duration="{duration}">
1232
+ <failure message="CHECK_THAT(testStringForMatching(), StartsWith( &quot;This String&quot; ))">
1233
+ FAILED:
1234
+ CHECK_THAT( testStringForMatching(), StartsWith( "This String" ) )
1235
+ with expansion:
1236
+ "this string contains 'abc' as a substring" starts with: "This String"
1237
+ at Matchers.tests.cpp:<line number>
1238
+ </failure>
1239
+ <failure message="CHECK_THAT(testStringForMatching(), StartsWith( &quot;string&quot;, Catch::CaseSensitive::No ))">
1240
+ FAILED:
1241
+ CHECK_THAT( testStringForMatching(), StartsWith( "string", Catch::CaseSensitive::No ) )
1242
+ with expansion:
1243
+ "this string contains 'abc' as a substring" starts with: "string" (case insensitive)
1244
+ at Matchers.tests.cpp:<line number>
1245
+ </failure>
1246
+ </testCase>
1247
+ <testCase name="String matchers" duration="{duration}"/>
1248
+ <testCase name="Vector Approx matcher/Empty vector is roughly equal to an empty vector" duration="{duration}"/>
1249
+ <testCase name="Vector Approx matcher/Vectors with elements/A vector is approx equal to itself" duration="{duration}"/>
1250
+ <testCase name="Vector Approx matcher/Vectors with elements/Different length" duration="{duration}"/>
1251
+ <testCase name="Vector Approx matcher/Vectors with elements/Same length, different elements" duration="{duration}"/>
1252
+ <testCase name="Vector Approx matcher -- failing/Empty and non empty vectors are not approx equal" duration="{duration}">
1253
+ <failure message="CHECK_THAT(empty, Approx( t1 ))">
1254
+ FAILED:
1255
+ CHECK_THAT( empty, Approx( t1 ) )
1256
+ with expansion:
1257
+ { } is approx: { 1.0, 2.0 }
1258
+ at Matchers.tests.cpp:<line number>
1259
+ </failure>
1260
+ </testCase>
1261
+ <testCase name="Vector Approx matcher -- failing/Just different vectors" duration="{duration}">
1262
+ <failure message="CHECK_THAT(v1, Approx( v2 ))">
1263
+ FAILED:
1264
+ CHECK_THAT( v1, Approx( v2 ) )
1265
+ with expansion:
1266
+ { 2.0, 4.0, 6.0 } is approx: { 1.0, 3.0, 5.0 }
1267
+ at Matchers.tests.cpp:<line number>
1268
+ </failure>
1269
+ </testCase>
1270
+ <testCase name="Vector matchers/Contains (element)" duration="{duration}"/>
1271
+ <testCase name="Vector matchers/Contains (vector)" duration="{duration}"/>
1272
+ <testCase name="Vector matchers/Contains (element), composed" duration="{duration}"/>
1273
+ <testCase name="Vector matchers/Equals" duration="{duration}"/>
1274
+ <testCase name="Vector matchers/UnorderedEquals" duration="{duration}"/>
1275
+ <testCase name="Vector matchers that fail/Contains (element)" duration="{duration}">
1276
+ <failure message="CHECK_THAT(v, VectorContains( -1 ))">
1277
+ FAILED:
1278
+ CHECK_THAT( v, VectorContains( -1 ) )
1279
+ with expansion:
1280
+ { 1, 2, 3 } Contains: -1
1281
+ at Matchers.tests.cpp:<line number>
1282
+ </failure>
1283
+ <failure message="CHECK_THAT(empty, VectorContains( 1 ))">
1284
+ FAILED:
1285
+ CHECK_THAT( empty, VectorContains( 1 ) )
1286
+ with expansion:
1287
+ { } Contains: 1
1288
+ at Matchers.tests.cpp:<line number>
1289
+ </failure>
1290
+ </testCase>
1291
+ <testCase name="Vector matchers that fail/Contains (vector)" duration="{duration}">
1292
+ <failure message="CHECK_THAT(empty, Contains( v ))">
1293
+ FAILED:
1294
+ CHECK_THAT( empty, Contains( v ) )
1295
+ with expansion:
1296
+ { } Contains: { 1, 2, 3 }
1297
+ at Matchers.tests.cpp:<line number>
1298
+ </failure>
1299
+ <failure message="CHECK_THAT(v, Contains( v2 ))">
1300
+ FAILED:
1301
+ CHECK_THAT( v, Contains( v2 ) )
1302
+ with expansion:
1303
+ { 1, 2, 3 } Contains: { 1, 2, 4 }
1304
+ at Matchers.tests.cpp:<line number>
1305
+ </failure>
1306
+ </testCase>
1307
+ <testCase name="Vector matchers that fail/Equals" duration="{duration}">
1308
+ <failure message="CHECK_THAT(v, Equals( v2 ))">
1309
+ FAILED:
1310
+ CHECK_THAT( v, Equals( v2 ) )
1311
+ with expansion:
1312
+ { 1, 2, 3 } Equals: { 1, 2 }
1313
+ at Matchers.tests.cpp:<line number>
1314
+ </failure>
1315
+ <failure message="CHECK_THAT(v2, Equals( v ))">
1316
+ FAILED:
1317
+ CHECK_THAT( v2, Equals( v ) )
1318
+ with expansion:
1319
+ { 1, 2 } Equals: { 1, 2, 3 }
1320
+ at Matchers.tests.cpp:<line number>
1321
+ </failure>
1322
+ <failure message="CHECK_THAT(empty, Equals( v ))">
1323
+ FAILED:
1324
+ CHECK_THAT( empty, Equals( v ) )
1325
+ with expansion:
1326
+ { } Equals: { 1, 2, 3 }
1327
+ at Matchers.tests.cpp:<line number>
1328
+ </failure>
1329
+ <failure message="CHECK_THAT(v, Equals( empty ))">
1330
+ FAILED:
1331
+ CHECK_THAT( v, Equals( empty ) )
1332
+ with expansion:
1333
+ { 1, 2, 3 } Equals: { }
1334
+ at Matchers.tests.cpp:<line number>
1335
+ </failure>
1336
+ </testCase>
1337
+ <testCase name="Vector matchers that fail/UnorderedEquals" duration="{duration}">
1338
+ <failure message="CHECK_THAT(v, UnorderedEquals( empty ))">
1339
+ FAILED:
1340
+ CHECK_THAT( v, UnorderedEquals( empty ) )
1341
+ with expansion:
1342
+ { 1, 2, 3 } UnorderedEquals: { }
1343
+ at Matchers.tests.cpp:<line number>
1344
+ </failure>
1345
+ <failure message="CHECK_THAT(empty, UnorderedEquals( v ))">
1346
+ FAILED:
1347
+ CHECK_THAT( empty, UnorderedEquals( v ) )
1348
+ with expansion:
1349
+ { } UnorderedEquals: { 1, 2, 3 }
1350
+ at Matchers.tests.cpp:<line number>
1351
+ </failure>
1352
+ <failure message="CHECK_THAT(permuted, UnorderedEquals( v ))">
1353
+ FAILED:
1354
+ CHECK_THAT( permuted, UnorderedEquals( v ) )
1355
+ with expansion:
1356
+ { 1, 3 } UnorderedEquals: { 1, 2, 3 }
1357
+ at Matchers.tests.cpp:<line number>
1358
+ </failure>
1359
+ <failure message="CHECK_THAT(permuted, UnorderedEquals( v ))">
1360
+ FAILED:
1361
+ CHECK_THAT( permuted, UnorderedEquals( v ) )
1362
+ with expansion:
1363
+ { 3, 1 } UnorderedEquals: { 1, 2, 3 }
1364
+ at Matchers.tests.cpp:<line number>
1365
+ </failure>
1366
+ </testCase>
1367
+ </file>
1368
+ <file path="tests/<exe-name>/UsageTests/MatchersRanges.tests.cpp">
1369
+ <testCase name="Basic use of the Contains range matcher/Different argument ranges, same element type, default comparison" duration="{duration}"/>
1370
+ <testCase name="Basic use of the Contains range matcher/Different argument ranges, same element type, custom comparison" duration="{duration}"/>
1371
+ <testCase name="Basic use of the Contains range matcher/Different element type, custom comparisons" duration="{duration}"/>
1372
+ <testCase name="Basic use of the Contains range matcher/Can handle type that requires ADL-found free function begin and end" duration="{duration}"/>
1373
+ <testCase name="Basic use of the Contains range matcher/Initialization with move only types" duration="{duration}"/>
1374
+ <testCase name="Basic use of the Contains range matcher/Matching using matcher" duration="{duration}"/>
1375
+ <testCase name="Basic use of the Empty range matcher/Simple, std-provided containers" duration="{duration}"/>
1376
+ <testCase name="Basic use of the Empty range matcher/Type with empty" duration="{duration}"/>
1377
+ <testCase name="Basic use of the Empty range matcher/Type requires ADL found empty free function" duration="{duration}"/>
1378
+ <testCase name="Type conversions of RangeEquals and similar/Container conversions/Two equal containers of different container types" duration="{duration}"/>
1379
+ <testCase name="Type conversions of RangeEquals and similar/Container conversions/Two equal containers of different container types (differ in array N)" duration="{duration}"/>
1380
+ <testCase name="Type conversions of RangeEquals and similar/Container conversions/Two equal containers of different container types and value types" duration="{duration}"/>
1381
+ <testCase name="Type conversions of RangeEquals and similar/Container conversions/Two equal containers, one random access, one not" duration="{duration}"/>
1382
+ <testCase name="Type conversions of RangeEquals and similar/Value type/Two equal containers of different value types" duration="{duration}"/>
1383
+ <testCase name="Type conversions of RangeEquals and similar/Value type/Two non-equal containers of different value types" duration="{duration}"/>
1384
+ <testCase name="Type conversions of RangeEquals and similar/Ranges with begin that needs ADL" duration="{duration}"/>
1385
+ <testCase name="Type conversions of RangeEquals and similar/Custom predicate/Two equal non-empty containers (close enough)" duration="{duration}"/>
1386
+ <testCase name="Usage of AllMatch range matcher/Basic usage" duration="{duration}"/>
1387
+ <testCase name="Usage of AllMatch range matcher/Type requires ADL found begin and end" duration="{duration}"/>
1388
+ <testCase name="Usage of AllMatch range matcher/Shortcircuiting/All are read" duration="{duration}"/>
1389
+ <testCase name="Usage of AllMatch range matcher/Shortcircuiting/Short-circuited" duration="{duration}"/>
1390
+ <testCase name="Usage of AllTrue range matcher/Basic usage/All true evaluates to true" duration="{duration}"/>
1391
+ <testCase name="Usage of AllTrue range matcher/Basic usage/Empty evaluates to true" duration="{duration}"/>
1392
+ <testCase name="Usage of AllTrue range matcher/Basic usage/One false evalutes to false" duration="{duration}"/>
1393
+ <testCase name="Usage of AllTrue range matcher/Basic usage/All false evaluates to false" duration="{duration}"/>
1394
+ <testCase name="Usage of AllTrue range matcher/Contained type is convertible to bool/All true evaluates to true" duration="{duration}"/>
1395
+ <testCase name="Usage of AllTrue range matcher/Contained type is convertible to bool/One false evalutes to false" duration="{duration}"/>
1396
+ <testCase name="Usage of AllTrue range matcher/Contained type is convertible to bool/All false evaluates to false" duration="{duration}"/>
1397
+ <testCase name="Usage of AllTrue range matcher/Shortcircuiting/All are read" duration="{duration}"/>
1398
+ <testCase name="Usage of AllTrue range matcher/Shortcircuiting/Short-circuited" duration="{duration}"/>
1399
+ <testCase name="Usage of AnyMatch range matcher/Basic usage" duration="{duration}"/>
1400
+ <testCase name="Usage of AnyMatch range matcher/Type requires ADL found begin and end" duration="{duration}"/>
1401
+ <testCase name="Usage of AnyMatch range matcher/Shortcircuiting/All are read" duration="{duration}"/>
1402
+ <testCase name="Usage of AnyMatch range matcher/Shortcircuiting/Short-circuited" duration="{duration}"/>
1403
+ <testCase name="Usage of AnyTrue range matcher/Basic usage/All true evaluates to true" duration="{duration}"/>
1404
+ <testCase name="Usage of AnyTrue range matcher/Basic usage/Empty evaluates to false" duration="{duration}"/>
1405
+ <testCase name="Usage of AnyTrue range matcher/Basic usage/One true evalutes to true" duration="{duration}"/>
1406
+ <testCase name="Usage of AnyTrue range matcher/Basic usage/All false evaluates to false" duration="{duration}"/>
1407
+ <testCase name="Usage of AnyTrue range matcher/Contained type is convertible to bool/All true evaluates to true" duration="{duration}"/>
1408
+ <testCase name="Usage of AnyTrue range matcher/Contained type is convertible to bool/One true evalutes to true" duration="{duration}"/>
1409
+ <testCase name="Usage of AnyTrue range matcher/Contained type is convertible to bool/All false evaluates to false" duration="{duration}"/>
1410
+ <testCase name="Usage of AnyTrue range matcher/Shortcircuiting/All are read" duration="{duration}"/>
1411
+ <testCase name="Usage of AnyTrue range matcher/Shortcircuiting/Short-circuited" duration="{duration}"/>
1412
+ <testCase name="Usage of NoneMatch range matcher/Basic usage" duration="{duration}"/>
1413
+ <testCase name="Usage of NoneMatch range matcher/Type requires ADL found begin and end" duration="{duration}"/>
1414
+ <testCase name="Usage of NoneMatch range matcher/Shortcircuiting/All are read" duration="{duration}"/>
1415
+ <testCase name="Usage of NoneMatch range matcher/Shortcircuiting/Short-circuited" duration="{duration}"/>
1416
+ <testCase name="Usage of NoneTrue range matcher/Basic usage/All true evaluates to false" duration="{duration}"/>
1417
+ <testCase name="Usage of NoneTrue range matcher/Basic usage/Empty evaluates to true" duration="{duration}"/>
1418
+ <testCase name="Usage of NoneTrue range matcher/Basic usage/One true evalutes to false" duration="{duration}"/>
1419
+ <testCase name="Usage of NoneTrue range matcher/Basic usage/All false evaluates to true" duration="{duration}"/>
1420
+ <testCase name="Usage of NoneTrue range matcher/Contained type is convertible to bool/All true evaluates to false" duration="{duration}"/>
1421
+ <testCase name="Usage of NoneTrue range matcher/Contained type is convertible to bool/One true evalutes to false" duration="{duration}"/>
1422
+ <testCase name="Usage of NoneTrue range matcher/Contained type is convertible to bool/All false evaluates to true" duration="{duration}"/>
1423
+ <testCase name="Usage of NoneTrue range matcher/Shortcircuiting/All are read" duration="{duration}"/>
1424
+ <testCase name="Usage of NoneTrue range matcher/Shortcircuiting/Short-circuited" duration="{duration}"/>
1425
+ <testCase name="Usage of RangeEquals range matcher/Basic usage/Empty container matches empty container" duration="{duration}"/>
1426
+ <testCase name="Usage of RangeEquals range matcher/Basic usage/Empty container does not match non-empty container" duration="{duration}"/>
1427
+ <testCase name="Usage of RangeEquals range matcher/Basic usage/Two equal 1-length non-empty containers" duration="{duration}"/>
1428
+ <testCase name="Usage of RangeEquals range matcher/Basic usage/Two equal-sized, equal, non-empty containers" duration="{duration}"/>
1429
+ <testCase name="Usage of RangeEquals range matcher/Basic usage/Two equal-sized, non-equal, non-empty containers" duration="{duration}"/>
1430
+ <testCase name="Usage of RangeEquals range matcher/Basic usage/Two non-equal-sized, non-empty containers (with same first elements)" duration="{duration}"/>
1431
+ <testCase name="Usage of RangeEquals range matcher/Custom predicate/Two equal non-empty containers (close enough)" duration="{duration}"/>
1432
+ <testCase name="Usage of RangeEquals range matcher/Custom predicate/Two non-equal non-empty containers (close enough)" duration="{duration}"/>
1433
+ <testCase name="Usage of RangeEquals range matcher/Ranges that need ADL begin/end" duration="{duration}"/>
1434
+ <testCase name="Usage of RangeEquals range matcher/Check short-circuiting behaviour/Check short-circuits on failure" duration="{duration}"/>
1435
+ <testCase name="Usage of RangeEquals range matcher/Check short-circuiting behaviour/All elements are checked on success" duration="{duration}"/>
1436
+ <testCase name="Usage of UnorderedRangeEquals range matcher/Basic usage/Empty container matches empty container" duration="{duration}"/>
1437
+ <testCase name="Usage of UnorderedRangeEquals range matcher/Basic usage/Empty container does not match non-empty container" duration="{duration}"/>
1438
+ <testCase name="Usage of UnorderedRangeEquals range matcher/Basic usage/Two equal 1-length non-empty containers" duration="{duration}"/>
1439
+ <testCase name="Usage of UnorderedRangeEquals range matcher/Basic usage/Two equal-sized, equal, non-empty containers" duration="{duration}"/>
1440
+ <testCase name="Usage of UnorderedRangeEquals range matcher/Basic usage/Two equal-sized, non-equal, non-empty containers" duration="{duration}"/>
1441
+ <testCase name="Usage of UnorderedRangeEquals range matcher/Basic usage/Two non-equal-sized, non-empty containers" duration="{duration}"/>
1442
+ <testCase name="Usage of UnorderedRangeEquals range matcher/Custom predicate/Two equal non-empty containers (close enough)" duration="{duration}"/>
1443
+ <testCase name="Usage of UnorderedRangeEquals range matcher/Custom predicate/Two non-equal non-empty containers (close enough)" duration="{duration}"/>
1444
+ <testCase name="Usage of UnorderedRangeEquals range matcher/Ranges that need ADL begin/end" duration="{duration}"/>
1445
+ <testCase name="Usage of the SizeIs range matcher/Some with stdlib containers" duration="{duration}"/>
1446
+ <testCase name="Usage of the SizeIs range matcher/Type requires ADL found size free function" duration="{duration}"/>
1447
+ <testCase name="Usage of the SizeIs range matcher/Type has size member" duration="{duration}"/>
1448
+ </file>
1449
+ <file path="tests/<exe-name>/UsageTests/Message.tests.cpp">
1450
+ <testCase name="#1455 - INFO and WARN can start with a linebreak" duration="{duration}"/>
1451
+ <testCase name="CAPTURE can deal with complex expressions" duration="{duration}"/>
1452
+ <testCase name="CAPTURE can deal with complex expressions involving commas" duration="{duration}"/>
1453
+ <testCase name="CAPTURE parses string and character constants" duration="{duration}"/>
1454
+ <testCase name="FAIL aborts the test" duration="{duration}">
1455
+ <failure message="FAIL()">
1456
+ FAILED:
1457
+ This is a failure
1458
+ at Message.tests.cpp:<line number>
1459
+ </failure>
1460
+ </testCase>
1461
+ <testCase name="FAIL does not require an argument" duration="{duration}">
1462
+ <failure message="FAIL()">
1463
+ FAILED:
1464
+ at Message.tests.cpp:<line number>
1465
+ </failure>
1466
+ </testCase>
1467
+ <testCase name="FAIL_CHECK does not abort the test" duration="{duration}">
1468
+ <failure message="FAIL_CHECK()">
1469
+ FAILED:
1470
+ This is a failure
1471
+ at Message.tests.cpp:<line number>
1472
+ </failure>
1473
+ </testCase>
1474
+ <testCase name="INFO and WARN do not abort tests" duration="{duration}"/>
1475
+ <testCase name="INFO gets logged on failure" duration="{duration}">
1476
+ <failure message="REQUIRE(a == 1)">
1477
+ FAILED:
1478
+ REQUIRE( a == 1 )
1479
+ with expansion:
1480
+ 2 == 1
1481
+ this message should be logged
1482
+ so should this
1483
+ at Message.tests.cpp:<line number>
1484
+ </failure>
1485
+ </testCase>
1486
+ <testCase name="INFO gets logged on failure, even if captured before successful assertions" duration="{duration}">
1487
+ <failure message="CHECK(a == 1)">
1488
+ FAILED:
1489
+ CHECK( a == 1 )
1490
+ with expansion:
1491
+ 2 == 1
1492
+ this message may be logged later
1493
+ this message should be logged
1494
+ at Message.tests.cpp:<line number>
1495
+ </failure>
1496
+ <failure message="CHECK(a == 0)">
1497
+ FAILED:
1498
+ CHECK( a == 0 )
1499
+ with expansion:
1500
+ 2 == 0
1501
+ this message may be logged later
1502
+ this message should be logged
1503
+ and this, but later
1504
+ at Message.tests.cpp:<line number>
1505
+ </failure>
1506
+ </testCase>
1507
+ <testCase name="INFO is reset for each loop" duration="{duration}">
1508
+ <failure message="REQUIRE(i &lt; 10)">
1509
+ FAILED:
1510
+ REQUIRE( i &lt; 10 )
1511
+ with expansion:
1512
+ 10 &lt; 10
1513
+ current counter 10
1514
+ i := 10
1515
+ at Message.tests.cpp:<line number>
1516
+ </failure>
1517
+ </testCase>
1518
+ <testCase name="Output from all sections is reported/one" duration="{duration}">
1519
+ <failure message="FAIL()">
1520
+ FAILED:
1521
+ Message from section one
1522
+ at Message.tests.cpp:<line number>
1523
+ </failure>
1524
+ </testCase>
1525
+ <testCase name="Output from all sections is reported/two" duration="{duration}">
1526
+ <failure message="FAIL()">
1527
+ FAILED:
1528
+ Message from section two
1529
+ at Message.tests.cpp:<line number>
1530
+ </failure>
1531
+ </testCase>
1532
+ <testCase name="SUCCEED counts as a test pass" duration="{duration}"/>
1533
+ <testCase name="SUCCEED does not require an argument" duration="{duration}"/>
1534
+ <testCase name="Standard output from all sections is reported/two" duration="{duration}"/>
1535
+ <testCase name="The NO_FAIL macro reports a failure but does not fail the test" duration="{duration}"/>
1536
+ <testCase name="just failure" duration="{duration}">
1537
+ <failure message="FAIL()">
1538
+ FAILED:
1539
+ Previous info should not be seen
1540
+ at Message.tests.cpp:<line number>
1541
+ </failure>
1542
+ </testCase>
1543
+ <testCase name="just failure after unscoped info" duration="{duration}">
1544
+ <failure message="FAIL()">
1545
+ FAILED:
1546
+ previous unscoped info SHOULD not be seen
1547
+ at Message.tests.cpp:<line number>
1548
+ </failure>
1549
+ </testCase>
1550
+ <testCase name="mix info, unscoped info and warning" duration="{duration}"/>
1551
+ <testCase name="not prints unscoped info from previous failures" duration="{duration}">
1552
+ <failure message="REQUIRE(false)">
1553
+ FAILED:
1554
+ REQUIRE( false )
1555
+ this SHOULD be seen
1556
+ at Message.tests.cpp:<line number>
1557
+ </failure>
1558
+ </testCase>
1559
+ <testCase name="print unscoped info if passing unscoped info is printed" duration="{duration}"/>
1560
+ <testCase name="prints unscoped info on failure" duration="{duration}">
1561
+ <failure message="REQUIRE(false)">
1562
+ FAILED:
1563
+ REQUIRE( false )
1564
+ this SHOULD be seen
1565
+ this SHOULD also be seen
1566
+ at Message.tests.cpp:<line number>
1567
+ </failure>
1568
+ </testCase>
1569
+ <testCase name="prints unscoped info only for the first assertion" duration="{duration}">
1570
+ <failure message="CHECK(false)">
1571
+ FAILED:
1572
+ CHECK( false )
1573
+ this SHOULD be seen only ONCE
1574
+ at Message.tests.cpp:<line number>
1575
+ </failure>
1576
+ </testCase>
1577
+ <testCase name="sends information to INFO" duration="{duration}">
1578
+ <failure message="REQUIRE(false)">
1579
+ FAILED:
1580
+ REQUIRE( false )
1581
+ hi
1582
+ i := 7
1583
+ at Message.tests.cpp:<line number>
1584
+ </failure>
1585
+ </testCase>
1586
+ <testCase name="stacks unscoped info in loops" duration="{duration}">
1587
+ <failure message="CHECK(false)">
1588
+ FAILED:
1589
+ CHECK( false )
1590
+ Count 1 to 3...
1591
+ 1
1592
+ 2
1593
+ 3
1594
+ at Message.tests.cpp:<line number>
1595
+ </failure>
1596
+ <failure message="CHECK(false)">
1597
+ FAILED:
1598
+ CHECK( false )
1599
+ Count 4 to 6...
1600
+ 4
1601
+ 5
1602
+ 6
1603
+ at Message.tests.cpp:<line number>
1604
+ </failure>
1605
+ </testCase>
1606
+ </file>
1607
+ <file path="tests/<exe-name>/UsageTests/Misc.tests.cpp">
1608
+ <testCase name="# A test name that starts with a #" duration="{duration}"/>
1609
+ <testCase name="#1175 - Hidden Test" duration="{duration}"/>
1610
+ <testCase name="#1954 - 7 arg template test case sig compiles - 1, 1, 1, 1, 1, 0, 0" duration="{duration}"/>
1611
+ <testCase name="#1954 - 7 arg template test case sig compiles - 5, 1, 1, 1, 1, 0, 0" duration="{duration}"/>
1612
+ <testCase name="#1954 - 7 arg template test case sig compiles - 5, 3, 1, 1, 1, 0, 0" duration="{duration}"/>
1613
+ <testCase name="#835 -- errno should not be touched by Catch2" duration="{duration}">
1614
+ <skipped message="CHECK(f() == 0)">
1615
+ FAILED:
1616
+ CHECK( f() == 0 )
1617
+ with expansion:
1618
+ 1 == 0
1619
+ at Misc.tests.cpp:<line number>
1620
+ </skipped>
1621
+ </testCase>
1622
+ <testCase name="#961 -- Dynamically created sections should all be reported/Looped section 0" duration="{duration}"/>
1623
+ <testCase name="#961 -- Dynamically created sections should all be reported/Looped section 1" duration="{duration}"/>
1624
+ <testCase name="#961 -- Dynamically created sections should all be reported/Looped section 2" duration="{duration}"/>
1625
+ <testCase name="#961 -- Dynamically created sections should all be reported/Looped section 3" duration="{duration}"/>
1626
+ <testCase name="#961 -- Dynamically created sections should all be reported/Looped section 4" duration="{duration}"/>
1627
+ <testCase name="A Template product test case - Foo&lt;float>" duration="{duration}"/>
1628
+ <testCase name="A Template product test case - Foo&lt;int>" duration="{duration}"/>
1629
+ <testCase name="A Template product test case - std::vector&lt;float>" duration="{duration}"/>
1630
+ <testCase name="A Template product test case - std::vector&lt;int>" duration="{duration}"/>
1631
+ <testCase name="A Template product test case with array signature - Bar&lt;float, 42>" duration="{duration}"/>
1632
+ <testCase name="A Template product test case with array signature - Bar&lt;int, 9>" duration="{duration}"/>
1633
+ <testCase name="A Template product test case with array signature - std::array&lt;float, 42>" duration="{duration}"/>
1634
+ <testCase name="A Template product test case with array signature - std::array&lt;int, 9>" duration="{duration}"/>
1635
+ <testCase name="A couple of nested sections followed by a failure" duration="{duration}">
1636
+ <failure message="FAIL()">
1637
+ FAILED:
1638
+ to infinity and beyond
1639
+ at Misc.tests.cpp:<line number>
1640
+ </failure>
1641
+ </testCase>
1642
+ <testCase name="A couple of nested sections followed by a failure/Outer/Inner" duration="{duration}"/>
1643
+ <testCase name="Factorials are computed" duration="{duration}"/>
1644
+ <testCase name="ManuallyRegistered" duration="{duration}"/>
1645
+ <testCase name="Nice descriptive name" duration="{duration}"/>
1646
+ <testCase name="Product with differing arities - std::tuple&lt;int, double, float>" duration="{duration}"/>
1647
+ <testCase name="Product with differing arities - std::tuple&lt;int, double>" duration="{duration}"/>
1648
+ <testCase name="Product with differing arities - std::tuple&lt;int>" duration="{duration}"/>
1649
+ <testCase name="Sends stuff to stdout and stderr" duration="{duration}"/>
1650
+ <testCase name="Tabs and newlines show in output" duration="{duration}">
1651
+ <failure message="CHECK(s1 == s2)">
1652
+ FAILED:
1653
+ CHECK( s1 == s2 )
1654
+ with expansion:
1655
+ "if ($b == 10) {
1656
+ $a = 20;
1657
+ }"
1658
+ ==
1659
+ "if ($b == 10) {
1660
+ $a = 20;
1661
+ }
1662
+ "
1663
+ at Misc.tests.cpp:<line number>
1664
+ </failure>
1665
+ </testCase>
1666
+ <testCase name="Template test case with test types specified inside non-copyable and non-movable std::tuple - NonCopyableAndNonMovableTypes - 0" duration="{duration}"/>
1667
+ <testCase name="Template test case with test types specified inside non-copyable and non-movable std::tuple - NonCopyableAndNonMovableTypes - 1" duration="{duration}"/>
1668
+ <testCase name="Template test case with test types specified inside non-default-constructible std::tuple - MyNonDefaultConstructibleTypes - 0" duration="{duration}"/>
1669
+ <testCase name="Template test case with test types specified inside non-default-constructible std::tuple - MyNonDefaultConstructibleTypes - 1" duration="{duration}"/>
1670
+ <testCase name="Template test case with test types specified inside std::tuple - MyTypes - 0" duration="{duration}"/>
1671
+ <testCase name="Template test case with test types specified inside std::tuple - MyTypes - 1" duration="{duration}"/>
1672
+ <testCase name="Template test case with test types specified inside std::tuple - MyTypes - 2" duration="{duration}"/>
1673
+ <testCase name="TemplateTest: vectors can be sized and resized - float" duration="{duration}"/>
1674
+ <testCase name="TemplateTest: vectors can be sized and resized - float/resizing bigger changes size and capacity" duration="{duration}"/>
1675
+ <testCase name="TemplateTest: vectors can be sized and resized - float/resizing smaller changes size but not capacity" duration="{duration}"/>
1676
+ <testCase name="TemplateTest: vectors can be sized and resized - float/resizing smaller changes size but not capacity/We can use the 'swap trick' to reset the capacity" duration="{duration}"/>
1677
+ <testCase name="TemplateTest: vectors can be sized and resized - float/reserving bigger changes capacity but not size" duration="{duration}"/>
1678
+ <testCase name="TemplateTest: vectors can be sized and resized - float/reserving smaller does not change size or capacity" duration="{duration}"/>
1679
+ <testCase name="TemplateTest: vectors can be sized and resized - int" duration="{duration}"/>
1680
+ <testCase name="TemplateTest: vectors can be sized and resized - int/resizing bigger changes size and capacity" duration="{duration}"/>
1681
+ <testCase name="TemplateTest: vectors can be sized and resized - int/resizing smaller changes size but not capacity" duration="{duration}"/>
1682
+ <testCase name="TemplateTest: vectors can be sized and resized - int/resizing smaller changes size but not capacity/We can use the 'swap trick' to reset the capacity" duration="{duration}"/>
1683
+ <testCase name="TemplateTest: vectors can be sized and resized - int/reserving bigger changes capacity but not size" duration="{duration}"/>
1684
+ <testCase name="TemplateTest: vectors can be sized and resized - int/reserving smaller does not change size or capacity" duration="{duration}"/>
1685
+ <testCase name="TemplateTest: vectors can be sized and resized - std::string" duration="{duration}"/>
1686
+ <testCase name="TemplateTest: vectors can be sized and resized - std::string/resizing bigger changes size and capacity" duration="{duration}"/>
1687
+ <testCase name="TemplateTest: vectors can be sized and resized - std::string/resizing smaller changes size but not capacity" duration="{duration}"/>
1688
+ <testCase name="TemplateTest: vectors can be sized and resized - std::string/resizing smaller changes size but not capacity/We can use the 'swap trick' to reset the capacity" duration="{duration}"/>
1689
+ <testCase name="TemplateTest: vectors can be sized and resized - std::string/reserving bigger changes capacity but not size" duration="{duration}"/>
1690
+ <testCase name="TemplateTest: vectors can be sized and resized - std::string/reserving smaller does not change size or capacity" duration="{duration}"/>
1691
+ <testCase name="TemplateTest: vectors can be sized and resized - std::tuple&lt;int,float>" duration="{duration}"/>
1692
+ <testCase name="TemplateTest: vectors can be sized and resized - std::tuple&lt;int,float>/resizing bigger changes size and capacity" duration="{duration}"/>
1693
+ <testCase name="TemplateTest: vectors can be sized and resized - std::tuple&lt;int,float>/resizing smaller changes size but not capacity" duration="{duration}"/>
1694
+ <testCase name="TemplateTest: vectors can be sized and resized - std::tuple&lt;int,float>/resizing smaller changes size but not capacity/We can use the 'swap trick' to reset the capacity" duration="{duration}"/>
1695
+ <testCase name="TemplateTest: vectors can be sized and resized - std::tuple&lt;int,float>/reserving bigger changes capacity but not size" duration="{duration}"/>
1696
+ <testCase name="TemplateTest: vectors can be sized and resized - std::tuple&lt;int,float>/reserving smaller does not change size or capacity" duration="{duration}"/>
1697
+ <testCase name="TemplateTestSig: vectors can be sized and resized - (std::tuple&lt;int, float>), 6" duration="{duration}"/>
1698
+ <testCase name="TemplateTestSig: vectors can be sized and resized - (std::tuple&lt;int, float>), 6/resizing bigger changes size and capacity" duration="{duration}"/>
1699
+ <testCase name="TemplateTestSig: vectors can be sized and resized - (std::tuple&lt;int, float>), 6/resizing smaller changes size but not capacity" duration="{duration}"/>
1700
+ <testCase name="TemplateTestSig: vectors can be sized and resized - (std::tuple&lt;int, float>), 6/resizing smaller changes size but not capacity/We can use the 'swap trick' to reset the capacity" duration="{duration}"/>
1701
+ <testCase name="TemplateTestSig: vectors can be sized and resized - (std::tuple&lt;int, float>), 6/reserving bigger changes capacity but not size" duration="{duration}"/>
1702
+ <testCase name="TemplateTestSig: vectors can be sized and resized - (std::tuple&lt;int, float>), 6/reserving smaller does not change size or capacity" duration="{duration}"/>
1703
+ <testCase name="TemplateTestSig: vectors can be sized and resized - float,4" duration="{duration}"/>
1704
+ <testCase name="TemplateTestSig: vectors can be sized and resized - float,4/resizing bigger changes size and capacity" duration="{duration}"/>
1705
+ <testCase name="TemplateTestSig: vectors can be sized and resized - float,4/resizing smaller changes size but not capacity" duration="{duration}"/>
1706
+ <testCase name="TemplateTestSig: vectors can be sized and resized - float,4/resizing smaller changes size but not capacity/We can use the 'swap trick' to reset the capacity" duration="{duration}"/>
1707
+ <testCase name="TemplateTestSig: vectors can be sized and resized - float,4/reserving bigger changes capacity but not size" duration="{duration}"/>
1708
+ <testCase name="TemplateTestSig: vectors can be sized and resized - float,4/reserving smaller does not change size or capacity" duration="{duration}"/>
1709
+ <testCase name="TemplateTestSig: vectors can be sized and resized - int,5" duration="{duration}"/>
1710
+ <testCase name="TemplateTestSig: vectors can be sized and resized - int,5/resizing bigger changes size and capacity" duration="{duration}"/>
1711
+ <testCase name="TemplateTestSig: vectors can be sized and resized - int,5/resizing smaller changes size but not capacity" duration="{duration}"/>
1712
+ <testCase name="TemplateTestSig: vectors can be sized and resized - int,5/resizing smaller changes size but not capacity/We can use the 'swap trick' to reset the capacity" duration="{duration}"/>
1713
+ <testCase name="TemplateTestSig: vectors can be sized and resized - int,5/reserving bigger changes capacity but not size" duration="{duration}"/>
1714
+ <testCase name="TemplateTestSig: vectors can be sized and resized - int,5/reserving smaller does not change size or capacity" duration="{duration}"/>
1715
+ <testCase name="TemplateTestSig: vectors can be sized and resized - std::string,15" duration="{duration}"/>
1716
+ <testCase name="TemplateTestSig: vectors can be sized and resized - std::string,15/resizing bigger changes size and capacity" duration="{duration}"/>
1717
+ <testCase name="TemplateTestSig: vectors can be sized and resized - std::string,15/resizing smaller changes size but not capacity" duration="{duration}"/>
1718
+ <testCase name="TemplateTestSig: vectors can be sized and resized - std::string,15/resizing smaller changes size but not capacity/We can use the 'swap trick' to reset the capacity" duration="{duration}"/>
1719
+ <testCase name="TemplateTestSig: vectors can be sized and resized - std::string,15/reserving bigger changes capacity but not size" duration="{duration}"/>
1720
+ <testCase name="TemplateTestSig: vectors can be sized and resized - std::string,15/reserving smaller does not change size or capacity" duration="{duration}"/>
1721
+ <testCase name="Testing checked-if" duration="{duration}"/>
1722
+ <testCase name="Testing checked-if 2" duration="{duration}">
1723
+ <skipped message="FAIL()">
1724
+ FAILED:
1725
+ at Misc.tests.cpp:<line number>
1726
+ </skipped>
1727
+ </testCase>
1728
+ <testCase name="Testing checked-if 3" duration="{duration}">
1729
+ <skipped message="FAIL()">
1730
+ FAILED:
1731
+ at Misc.tests.cpp:<line number>
1732
+ </skipped>
1733
+ </testCase>
1734
+ <testCase name="This test 'should' fail but doesn't" duration="{duration}"/>
1735
+ <testCase name="checkedElse" duration="{duration}"/>
1736
+ <testCase name="checkedElse, failing" duration="{duration}">
1737
+ <failure message="REQUIRE(testCheckedElse( false ))">
1738
+ FAILED:
1739
+ REQUIRE( testCheckedElse( false ) )
1740
+ with expansion:
1741
+ false
1742
+ at Misc.tests.cpp:<line number>
1743
+ </failure>
1744
+ </testCase>
1745
+ <testCase name="checkedIf" duration="{duration}"/>
1746
+ <testCase name="checkedIf, failing" duration="{duration}">
1747
+ <failure message="REQUIRE(testCheckedIf( false ))">
1748
+ FAILED:
1749
+ REQUIRE( testCheckedIf( false ) )
1750
+ with expansion:
1751
+ false
1752
+ at Misc.tests.cpp:<line number>
1753
+ </failure>
1754
+ </testCase>
1755
+ <testCase name="even more nested SECTION tests/c/d (leaf)" duration="{duration}"/>
1756
+ <testCase name="even more nested SECTION tests/c/e (leaf)" duration="{duration}"/>
1757
+ <testCase name="even more nested SECTION tests/f (leaf)" duration="{duration}"/>
1758
+ <testCase name="long long" duration="{duration}"/>
1759
+ <testCase name="looped SECTION tests/b is currently: 0" duration="{duration}">
1760
+ <failure message="CHECK(b > a)">
1761
+ FAILED:
1762
+ CHECK( b > a )
1763
+ with expansion:
1764
+ 0 > 1
1765
+ at Misc.tests.cpp:<line number>
1766
+ </failure>
1767
+ </testCase>
1768
+ <testCase name="looped SECTION tests/b is currently: 1" duration="{duration}">
1769
+ <failure message="CHECK(b > a)">
1770
+ FAILED:
1771
+ CHECK( b > a )
1772
+ with expansion:
1773
+ 1 > 1
1774
+ at Misc.tests.cpp:<line number>
1775
+ </failure>
1776
+ </testCase>
1777
+ <testCase name="looped SECTION tests/b is currently: 2" duration="{duration}"/>
1778
+ <testCase name="looped SECTION tests/b is currently: 3" duration="{duration}"/>
1779
+ <testCase name="looped SECTION tests/b is currently: 4" duration="{duration}"/>
1780
+ <testCase name="looped SECTION tests/b is currently: 5" duration="{duration}"/>
1781
+ <testCase name="looped SECTION tests/b is currently: 6" duration="{duration}"/>
1782
+ <testCase name="looped SECTION tests/b is currently: 7" duration="{duration}"/>
1783
+ <testCase name="looped SECTION tests/b is currently: 8" duration="{duration}"/>
1784
+ <testCase name="looped SECTION tests/b is currently: 9" duration="{duration}"/>
1785
+ <testCase name="looped tests" duration="{duration}">
1786
+ <failure message="CHECK(( fib[i] % 2 ) == 0)">
1787
+ FAILED:
1788
+ CHECK( ( fib[i] % 2 ) == 0 )
1789
+ with expansion:
1790
+ 1 == 0
1791
+ Testing if fib[0] (1) is even
1792
+ at Misc.tests.cpp:<line number>
1793
+ </failure>
1794
+ <failure message="CHECK(( fib[i] % 2 ) == 0)">
1795
+ FAILED:
1796
+ CHECK( ( fib[i] % 2 ) == 0 )
1797
+ with expansion:
1798
+ 1 == 0
1799
+ Testing if fib[1] (1) is even
1800
+ at Misc.tests.cpp:<line number>
1801
+ </failure>
1802
+ <failure message="CHECK(( fib[i] % 2 ) == 0)">
1803
+ FAILED:
1804
+ CHECK( ( fib[i] % 2 ) == 0 )
1805
+ with expansion:
1806
+ 1 == 0
1807
+ Testing if fib[3] (3) is even
1808
+ at Misc.tests.cpp:<line number>
1809
+ </failure>
1810
+ <failure message="CHECK(( fib[i] % 2 ) == 0)">
1811
+ FAILED:
1812
+ CHECK( ( fib[i] % 2 ) == 0 )
1813
+ with expansion:
1814
+ 1 == 0
1815
+ Testing if fib[4] (5) is even
1816
+ at Misc.tests.cpp:<line number>
1817
+ </failure>
1818
+ <failure message="CHECK(( fib[i] % 2 ) == 0)">
1819
+ FAILED:
1820
+ CHECK( ( fib[i] % 2 ) == 0 )
1821
+ with expansion:
1822
+ 1 == 0
1823
+ Testing if fib[6] (13) is even
1824
+ at Misc.tests.cpp:<line number>
1825
+ </failure>
1826
+ <failure message="CHECK(( fib[i] % 2 ) == 0)">
1827
+ FAILED:
1828
+ CHECK( ( fib[i] % 2 ) == 0 )
1829
+ with expansion:
1830
+ 1 == 0
1831
+ Testing if fib[7] (21) is even
1832
+ at Misc.tests.cpp:<line number>
1833
+ </failure>
1834
+ </testCase>
1835
+ <testCase name="more nested SECTION tests/equal/doesn't equal" duration="{duration}">
1836
+ <failure message="REQUIRE(a == b)">
1837
+ FAILED:
1838
+ REQUIRE( a == b )
1839
+ with expansion:
1840
+ 1 == 2
1841
+ at Misc.tests.cpp:<line number>
1842
+ </failure>
1843
+ </testCase>
1844
+ <testCase name="more nested SECTION tests/doesn't equal/not equal" duration="{duration}"/>
1845
+ <testCase name="more nested SECTION tests/doesn't equal/less than" duration="{duration}"/>
1846
+ <testCase name="nested SECTION tests/doesn't equal" duration="{duration}"/>
1847
+ <testCase name="nested SECTION tests/doesn't equal/not equal" duration="{duration}"/>
1848
+ <testCase name="not allowed" duration="{duration}"/>
1849
+ <testCase name="null strings" duration="{duration}"/>
1850
+ <testCase name="random SECTION tests/doesn't equal" duration="{duration}"/>
1851
+ <testCase name="random SECTION tests/not equal" duration="{duration}"/>
1852
+ <testCase name="send a single char to INFO" duration="{duration}">
1853
+ <failure message="REQUIRE(false)">
1854
+ FAILED:
1855
+ REQUIRE( false )
1856
+ 3
1857
+ at Misc.tests.cpp:<line number>
1858
+ </failure>
1859
+ </testCase>
1860
+ <testCase name="toString on const wchar_t const pointer returns the string contents" duration="{duration}"/>
1861
+ <testCase name="toString on const wchar_t pointer returns the string contents" duration="{duration}"/>
1862
+ <testCase name="toString on wchar_t const pointer returns the string contents" duration="{duration}"/>
1863
+ <testCase name="toString on wchar_t returns the string contents" duration="{duration}"/>
1864
+ <testCase name="vectors can be sized and resized" duration="{duration}"/>
1865
+ <testCase name="vectors can be sized and resized/resizing bigger changes size and capacity" duration="{duration}"/>
1866
+ <testCase name="vectors can be sized and resized/resizing smaller changes size but not capacity" duration="{duration}"/>
1867
+ <testCase name="vectors can be sized and resized/resizing smaller changes size but not capacity/We can use the 'swap trick' to reset the capacity" duration="{duration}"/>
1868
+ <testCase name="vectors can be sized and resized/reserving bigger changes capacity but not size" duration="{duration}"/>
1869
+ <testCase name="vectors can be sized and resized/reserving smaller does not change size or capacity" duration="{duration}"/>
1870
+ <testCase name="xmlentitycheck/embedded xml: &lt;test>it should be possible to embed xml characters, such as &lt;, &quot; or &amp;, or even whole &lt;xml>documents&lt;/xml> within an attribute&lt;/test>" duration="{duration}"/>
1871
+ <testCase name="xmlentitycheck/encoded chars: these should all be encoded: &amp;&amp;&amp;&quot;&quot;&quot;&lt;&lt;&lt;&amp;&quot;&lt;&lt;&amp;&quot;" duration="{duration}"/>
1872
+ </file>
1873
+ <file path="tests/<exe-name>/UsageTests/Skip.tests.cpp">
1874
+ <testCase name="a succeeding test can still be skipped" duration="{duration}">
1875
+ <skipped message="SKIP()">
1876
+ SKIPPED
1877
+ at Skip.tests.cpp:<line number>
1878
+ </skipped>
1879
+ </testCase>
1880
+ <testCase name="dynamic skipping works with generators" duration="{duration}">
1881
+ <skipped message="SKIP()">
1882
+ SKIPPED
1883
+ skipping because answer = 41
1884
+ at Skip.tests.cpp:<line number>
1885
+ </skipped>
1886
+ <skipped message="SKIP()">
1887
+ SKIPPED
1888
+ skipping because answer = 43
1889
+ at Skip.tests.cpp:<line number>
1890
+ </skipped>
1891
+ </testCase>
1892
+ <testCase name="failed assertions before SKIP cause test case to fail" duration="{duration}">
1893
+ <skipped message="CHECK(3 == 4)">
1894
+ FAILED:
1895
+ CHECK( 3 == 4 )
1896
+ at Skip.tests.cpp:<line number>
1897
+ </skipped>
1898
+ <skipped message="SKIP()">
1899
+ SKIPPED
1900
+ at Skip.tests.cpp:<line number>
1901
+ </skipped>
1902
+ </testCase>
1903
+ <testCase name="failing for some generator values causes entire test case to fail" duration="{duration}">
1904
+ <skipped message="FAIL()">
1905
+ FAILED:
1906
+ at Skip.tests.cpp:<line number>
1907
+ </skipped>
1908
+ <skipped message="SKIP()">
1909
+ SKIPPED
1910
+ at Skip.tests.cpp:<line number>
1911
+ </skipped>
1912
+ <skipped message="FAIL()">
1913
+ FAILED:
1914
+ at Skip.tests.cpp:<line number>
1915
+ </skipped>
1916
+ <skipped message="SKIP()">
1917
+ SKIPPED
1918
+ at Skip.tests.cpp:<line number>
1919
+ </skipped>
1920
+ </testCase>
1921
+ <testCase name="failing in some unskipped sections causes entire test case to fail/skipped" duration="{duration}">
1922
+ <skipped message="SKIP()">
1923
+ SKIPPED
1924
+ at Skip.tests.cpp:<line number>
1925
+ </skipped>
1926
+ </testCase>
1927
+ <testCase name="failing in some unskipped sections causes entire test case to fail/not skipped" duration="{duration}">
1928
+ <skipped message="FAIL()">
1929
+ FAILED:
1930
+ at Skip.tests.cpp:<line number>
1931
+ </skipped>
1932
+ </testCase>
1933
+ <testCase name="nested sections can be skipped dynamically at runtime/B2/B" duration="{duration}">
1934
+ <skipped message="SKIP()">
1935
+ SKIPPED
1936
+ at Skip.tests.cpp:<line number>
1937
+ </skipped>
1938
+ </testCase>
1939
+ <testCase name="nested sections can be skipped dynamically at runtime/B" duration="{duration}"/>
1940
+ <testCase name="sections can be skipped dynamically at runtime/not skipped" duration="{duration}"/>
1941
+ <testCase name="sections can be skipped dynamically at runtime/skipped" duration="{duration}">
1942
+ <skipped message="SKIP()">
1943
+ SKIPPED
1944
+ at Skip.tests.cpp:<line number>
1945
+ </skipped>
1946
+ </testCase>
1947
+ <testCase name="sections can be skipped dynamically at runtime/also not skipped" duration="{duration}"/>
1948
+ <testCase name="skipped tests can optionally provide a reason" duration="{duration}">
1949
+ <skipped message="SKIP()">
1950
+ SKIPPED
1951
+ skipping because answer = 43
1952
+ at Skip.tests.cpp:<line number>
1953
+ </skipped>
1954
+ </testCase>
1955
+ <testCase name="tests can be skipped dynamically at runtime" duration="{duration}">
1956
+ <skipped message="SKIP()">
1957
+ SKIPPED
1958
+ at Skip.tests.cpp:<line number>
1959
+ </skipped>
1960
+ </testCase>
1961
+ </file>
1962
+ <file path="tests/<exe-name>/UsageTests/ToStringChrono.tests.cpp">
1963
+ <testCase name="Stringifying std::chrono::duration helpers" duration="{duration}"/>
1964
+ <testCase name="Stringifying std::chrono::duration with weird ratios" duration="{duration}"/>
1965
+ <testCase name="Stringifying std::chrono::time_point&lt;system_clock>" duration="{duration}"/>
1966
+ </file>
1967
+ <file path="tests/<exe-name>/UsageTests/ToStringGeneral.tests.cpp">
1968
+ <testCase name="Capture and info messages/Capture should stringify like assertions" duration="{duration}"/>
1969
+ <testCase name="Capture and info messages/Info should NOT stringify the way assertions do" duration="{duration}"/>
1970
+ <testCase name="Character pretty printing/Specifically escaped" duration="{duration}"/>
1971
+ <testCase name="Character pretty printing/General chars" duration="{duration}"/>
1972
+ <testCase name="Character pretty printing/Low ASCII" duration="{duration}"/>
1973
+ <testCase name="Exception as a value (e.g. in REQUIRE_THROWS_MATCHES) can be stringified" duration="{duration}"/>
1974
+ <testCase name="Precision of floating point stringification can be set/Floats" duration="{duration}"/>
1975
+ <testCase name="Precision of floating point stringification can be set/Double" duration="{duration}"/>
1976
+ <testCase name="Static arrays are convertible to string/Single item" duration="{duration}"/>
1977
+ <testCase name="Static arrays are convertible to string/Multiple" duration="{duration}"/>
1978
+ <testCase name="Static arrays are convertible to string/Non-trivial inner items" duration="{duration}"/>
1979
+ <testCase name="std::map is convertible string/empty" duration="{duration}"/>
1980
+ <testCase name="std::map is convertible string/single item" duration="{duration}"/>
1981
+ <testCase name="std::map is convertible string/several items" duration="{duration}"/>
1982
+ <testCase name="std::set is convertible string/empty" duration="{duration}"/>
1983
+ <testCase name="std::set is convertible string/single item" duration="{duration}"/>
1984
+ <testCase name="std::set is convertible string/several items" duration="{duration}"/>
1985
+ </file>
1986
+ <file path="tests/<exe-name>/UsageTests/ToStringPair.tests.cpp">
1987
+ <testCase name="pair&lt;pair&lt;int,const char *,pair&lt;std::string,int> > -> toString" duration="{duration}"/>
1988
+ <testCase name="std::pair&lt;int,const std::string> -> toString" duration="{duration}"/>
1989
+ <testCase name="std::pair&lt;int,std::string> -> toString" duration="{duration}"/>
1990
+ <testCase name="std::vector&lt;std::pair&lt;std::string,int> > -> toString" duration="{duration}"/>
1991
+ </file>
1992
+ <file path="tests/<exe-name>/UsageTests/ToStringTuple.tests.cpp">
1993
+ <testCase name="tuple&lt;>" duration="{duration}"/>
1994
+ <testCase name="tuple&lt;float,int>" duration="{duration}"/>
1995
+ <testCase name="tuple&lt;int>" duration="{duration}"/>
1996
+ <testCase name="tuple&lt;string,string>" duration="{duration}"/>
1997
+ <testCase name="tuple&lt;tuple&lt;int>,tuple&lt;>,float>" duration="{duration}"/>
1998
+ </file>
1999
+ <file path="tests/<exe-name>/UsageTests/ToStringVector.tests.cpp">
2000
+ <testCase name="array&lt;int, N> -> toString" duration="{duration}"/>
2001
+ <testCase name="vec&lt;vec&lt;string,alloc>> -> toString" duration="{duration}"/>
2002
+ <testCase name="vector&lt;bool> -> toString" duration="{duration}"/>
2003
+ <testCase name="vector&lt;int,allocator> -> toString" duration="{duration}"/>
2004
+ <testCase name="vector&lt;int> -> toString" duration="{duration}"/>
2005
+ <testCase name="vector&lt;string> -> toString" duration="{duration}"/>
2006
+ </file>
2007
+ <file path="tests/<exe-name>/UsageTests/ToStringWhich.tests.cpp">
2008
+ <testCase name="stringify ranges" duration="{duration}"/>
2009
+ <testCase name="stringify( has_maker )" duration="{duration}"/>
2010
+ <testCase name="stringify( has_maker_and_operator )" duration="{duration}"/>
2011
+ <testCase name="stringify( has_neither )" duration="{duration}"/>
2012
+ <testCase name="stringify( has_operator )" duration="{duration}"/>
2013
+ <testCase name="stringify( has_template_operator )" duration="{duration}"/>
2014
+ <testCase name="stringify( vectors&lt;has_maker> )" duration="{duration}"/>
2015
+ <testCase name="stringify( vectors&lt;has_maker_and_operator> )" duration="{duration}"/>
2016
+ <testCase name="stringify( vectors&lt;has_operator> )" duration="{duration}"/>
2017
+ </file>
2018
+ <file path="tests/<exe-name>/UsageTests/Tricky.tests.cpp">
2019
+ <testCase name="#1514: stderr/stdout is not captured in tests aborted by an exception" duration="{duration}">
2020
+ <failure message="FAIL()">
2021
+ FAILED:
2022
+ 1514
2023
+ at Tricky.tests.cpp:<line number>
2024
+ </failure>
2025
+ </testCase>
2026
+ <testCase name="(unimplemented) static bools can be evaluated/compare to true" duration="{duration}"/>
2027
+ <testCase name="(unimplemented) static bools can be evaluated/compare to false" duration="{duration}"/>
2028
+ <testCase name="(unimplemented) static bools can be evaluated/negation" duration="{duration}"/>
2029
+ <testCase name="(unimplemented) static bools can be evaluated/double negation" duration="{duration}"/>
2030
+ <testCase name="(unimplemented) static bools can be evaluated/direct" duration="{duration}"/>
2031
+ <testCase name="A failing expression with a non streamable type is still captured" duration="{duration}">
2032
+ <failure message="CHECK(&amp;o1 == &amp;o2)">
2033
+ FAILED:
2034
+ CHECK( &amp;o1 == &amp;o2 )
2035
+ with expansion:
2036
+ 0x<hex digits> == 0x<hex digits>
2037
+ at Tricky.tests.cpp:<line number>
2038
+ </failure>
2039
+ <failure message="CHECK(o1 == o2)">
2040
+ FAILED:
2041
+ CHECK( o1 == o2 )
2042
+ with expansion:
2043
+ {?} == {?}
2044
+ at Tricky.tests.cpp:<line number>
2045
+ </failure>
2046
+ </testCase>
2047
+ <testCase name="An expression with side-effects should only be evaluated once" duration="{duration}"/>
2048
+ <testCase name="Assertions then sections" duration="{duration}"/>
2049
+ <testCase name="Assertions then sections/A section" duration="{duration}"/>
2050
+ <testCase name="Assertions then sections/A section/Another section" duration="{duration}"/>
2051
+ <testCase name="Assertions then sections/A section/Another other section" duration="{duration}"/>
2052
+ <testCase name="Commas in various macros are allowed" duration="{duration}"/>
2053
+ <testCase name="Comparing function pointers" duration="{duration}"/>
2054
+ <testCase name="Objects that evaluated in boolean contexts can be checked" duration="{duration}"/>
2055
+ <testCase name="Test enum bit values" duration="{duration}"/>
2056
+ <testCase name="X/level/0/a" duration="{duration}"/>
2057
+ <testCase name="X/level/0/b" duration="{duration}"/>
2058
+ <testCase name="X/level/1/a" duration="{duration}"/>
2059
+ <testCase name="X/level/1/b" duration="{duration}"/>
2060
+ <testCase name="boolean member" duration="{duration}"/>
2061
+ <testCase name="non streamable - with conv. op" duration="{duration}"/>
2062
+ <testCase name="non-copyable objects" duration="{duration}"/>
2063
+ <testCase name="null_ptr" duration="{duration}"/>
2064
+ <testCase name="pointer to class" duration="{duration}"/>
2065
+ </file>
2066
+ <file path="tests/<exe-name>/UsageTests/VariadicMacros.tests.cpp">
2067
+ <testCase name="Anonymous test case 1" duration="{duration}"/>
2068
+ <testCase name="Test case with one argument" duration="{duration}"/>
2069
+ <testCase name="Variadic macros/Section with one argument" duration="{duration}"/>
2070
+ </file>
2071
+ </testExecutions>