couchbase 4.2.2 → 4.2.4
Sign up to get free protection for your applications and to get access to all the features.
- package/deps/couchbase-cxx-client/.github/workflows/sanitizers.yml +20 -12
- package/deps/couchbase-cxx-client/.github/workflows/tests.yml +5 -3
- package/deps/couchbase-cxx-client/.idea/vcs.xml +2 -0
- package/deps/couchbase-cxx-client/CMakeLists.txt +67 -8
- package/deps/couchbase-cxx-client/README.md +1 -0
- package/deps/couchbase-cxx-client/bin/build-tests +3 -0
- package/deps/couchbase-cxx-client/bin/build-tests.rb +9 -0
- package/deps/couchbase-cxx-client/bin/create-search-index +164 -0
- package/deps/couchbase-cxx-client/bin/init-cluster +84 -12
- package/deps/couchbase-cxx-client/bin/run-unit-tests +62 -6
- package/deps/couchbase-cxx-client/bin/travel-sample-index-v6.json +184 -0
- package/deps/couchbase-cxx-client/bin/travel-sample-index.json +188 -0
- package/deps/couchbase-cxx-client/cmake/CompilerWarnings.cmake +12 -4
- package/deps/couchbase-cxx-client/cmake/Documentation.cmake +4 -4
- package/deps/couchbase-cxx-client/cmake/OpenSSL.cmake +147 -7
- package/deps/couchbase-cxx-client/cmake/Testing.cmake +12 -4
- package/deps/couchbase-cxx-client/cmake/ThirdPartyDependencies.cmake +4 -0
- package/deps/couchbase-cxx-client/cmake/VersionInfo.cmake +39 -3
- package/deps/couchbase-cxx-client/cmake/build_config.hxx.in +3 -0
- package/deps/couchbase-cxx-client/cmake/test_openssl.cxx +7 -0
- package/deps/couchbase-cxx-client/core/bucket.cxx +183 -151
- package/deps/couchbase-cxx-client/core/bucket.hxx +23 -1
- package/deps/couchbase-cxx-client/core/cluster.hxx +18 -1
- package/deps/couchbase-cxx-client/core/cluster_options.cxx +2 -2
- package/deps/couchbase-cxx-client/core/cluster_options.hxx +4 -7
- package/deps/couchbase-cxx-client/core/cluster_options_fwd.hxx +26 -0
- package/deps/couchbase-cxx-client/core/config_profile.hxx +2 -65
- package/deps/couchbase-cxx-client/core/config_profiles.cxx +79 -0
- package/deps/couchbase-cxx-client/core/config_profiles.hxx +56 -0
- package/deps/couchbase-cxx-client/core/crypto/CMakeLists.txt +5 -1
- package/deps/couchbase-cxx-client/core/error_context/analytics.hxx +2 -1
- package/deps/couchbase-cxx-client/core/error_context/http.hxx +2 -1
- package/deps/couchbase-cxx-client/core/error_context/key_value.cxx +2 -1
- package/deps/couchbase-cxx-client/core/error_context/key_value.hxx +10 -12
- package/deps/couchbase-cxx-client/core/error_context/query.hxx +2 -1
- package/deps/couchbase-cxx-client/core/error_context/search.hxx +3 -2
- package/deps/couchbase-cxx-client/core/error_context/view.hxx +2 -1
- package/deps/couchbase-cxx-client/core/impl/analytics.cxx +237 -0
- package/deps/couchbase-cxx-client/core/impl/boolean_field_query.cxx +40 -0
- package/deps/couchbase-cxx-client/core/impl/boolean_query.cxx +62 -0
- package/deps/couchbase-cxx-client/core/impl/cluster.cxx +2 -1
- package/deps/couchbase-cxx-client/core/impl/collection_query_index_manager.cxx +3 -3
- package/deps/couchbase-cxx-client/core/impl/conjunction_query.cxx +51 -0
- package/deps/couchbase-cxx-client/core/impl/date_range.cxx +89 -0
- package/deps/couchbase-cxx-client/core/impl/date_range_facet.cxx +54 -0
- package/deps/couchbase-cxx-client/core/impl/date_range_facet_result.cxx +64 -0
- package/deps/couchbase-cxx-client/core/impl/date_range_query.cxx +125 -0
- package/deps/couchbase-cxx-client/core/impl/disjunction_query.cxx +51 -0
- package/deps/couchbase-cxx-client/core/impl/dns_srv_tracker.cxx +5 -3
- package/deps/couchbase-cxx-client/core/impl/encoded_search_facet.hxx +29 -0
- package/deps/couchbase-cxx-client/core/impl/encoded_search_query.hxx +29 -0
- package/deps/couchbase-cxx-client/core/impl/encoded_search_sort.hxx +29 -0
- package/deps/couchbase-cxx-client/core/impl/geo_bounding_box_query.cxx +46 -0
- package/deps/couchbase-cxx-client/core/impl/geo_distance_query.cxx +43 -0
- package/deps/couchbase-cxx-client/core/impl/geo_polygon_query.cxx +46 -0
- package/deps/couchbase-cxx-client/core/impl/get_all_query_indexes.cxx +3 -3
- package/deps/couchbase-cxx-client/core/impl/internal_date_range_facet_result.cxx +80 -0
- package/deps/couchbase-cxx-client/core/impl/internal_date_range_facet_result.hxx +48 -0
- package/deps/couchbase-cxx-client/core/impl/internal_numeric_range_facet_result.cxx +80 -0
- package/deps/couchbase-cxx-client/core/impl/internal_numeric_range_facet_result.hxx +48 -0
- package/deps/couchbase-cxx-client/core/impl/internal_search_error_context.cxx +141 -0
- package/deps/couchbase-cxx-client/core/impl/internal_search_error_context.hxx +61 -0
- package/deps/couchbase-cxx-client/core/impl/internal_search_meta_data.cxx +60 -0
- package/deps/couchbase-cxx-client/core/impl/internal_search_meta_data.hxx +41 -0
- package/deps/couchbase-cxx-client/core/impl/internal_search_result.cxx +84 -0
- package/deps/couchbase-cxx-client/core/impl/internal_search_result.hxx +43 -0
- package/deps/couchbase-cxx-client/core/impl/internal_search_row.cxx +82 -0
- package/deps/couchbase-cxx-client/core/impl/internal_search_row.hxx +56 -0
- package/deps/couchbase-cxx-client/core/impl/internal_search_row_location.hxx +32 -0
- package/deps/couchbase-cxx-client/core/impl/internal_search_row_locations.cxx +137 -0
- package/deps/couchbase-cxx-client/core/impl/internal_search_row_locations.hxx +45 -0
- package/deps/couchbase-cxx-client/core/impl/internal_term_facet_result.cxx +80 -0
- package/deps/couchbase-cxx-client/core/impl/internal_term_facet_result.hxx +48 -0
- package/deps/couchbase-cxx-client/core/impl/key_value_error_context.cxx +98 -0
- package/deps/couchbase-cxx-client/core/impl/match_all_query.cxx +35 -0
- package/deps/couchbase-cxx-client/core/impl/match_none_query.cxx +35 -0
- package/deps/couchbase-cxx-client/core/impl/match_phrase_query.cxx +43 -0
- package/deps/couchbase-cxx-client/core/impl/match_query.cxx +59 -0
- package/deps/couchbase-cxx-client/core/impl/numeric_range.cxx +49 -0
- package/deps/couchbase-cxx-client/core/impl/numeric_range_facet.cxx +54 -0
- package/deps/couchbase-cxx-client/core/impl/numeric_range_facet_result.cxx +64 -0
- package/deps/couchbase-cxx-client/core/impl/numeric_range_query.cxx +56 -0
- package/deps/couchbase-cxx-client/core/impl/phrase_query.cxx +42 -0
- package/deps/couchbase-cxx-client/core/impl/prefix_query.cxx +40 -0
- package/deps/couchbase-cxx-client/core/impl/query.cxx +19 -17
- package/deps/couchbase-cxx-client/core/impl/query_error_context.cxx +75 -0
- package/deps/couchbase-cxx-client/core/impl/query_string_query.cxx +37 -0
- package/deps/couchbase-cxx-client/core/impl/regexp_query.cxx +40 -0
- package/deps/couchbase-cxx-client/core/impl/search.cxx +191 -0
- package/deps/couchbase-cxx-client/core/impl/search_error_context.cxx +147 -0
- package/deps/couchbase-cxx-client/core/impl/search_meta_data.cxx +46 -0
- package/deps/couchbase-cxx-client/core/impl/search_result.cxx +66 -0
- package/deps/couchbase-cxx-client/core/impl/search_row.cxx +74 -0
- package/deps/couchbase-cxx-client/core/impl/search_row_location.cxx +64 -0
- package/deps/couchbase-cxx-client/core/impl/search_row_locations.cxx +66 -0
- package/deps/couchbase-cxx-client/core/impl/search_sort_field.cxx +104 -0
- package/deps/couchbase-cxx-client/core/impl/search_sort_id.cxx +43 -0
- package/deps/couchbase-cxx-client/core/impl/search_sort_score.cxx +43 -0
- package/deps/couchbase-cxx-client/core/impl/subdoc/lookup_in_macro.cxx +1 -0
- package/deps/couchbase-cxx-client/core/impl/subdoc/mutate_in_macro.cxx +1 -0
- package/deps/couchbase-cxx-client/core/impl/term_facet.cxx +36 -0
- package/deps/couchbase-cxx-client/core/impl/term_facet_result.cxx +64 -0
- package/deps/couchbase-cxx-client/core/impl/term_query.cxx +56 -0
- package/deps/couchbase-cxx-client/core/impl/term_range_query.cxx +57 -0
- package/deps/couchbase-cxx-client/core/impl/transaction_get_result.cxx +54 -0
- package/deps/couchbase-cxx-client/core/impl/wildcard_query.cxx +40 -0
- package/deps/couchbase-cxx-client/core/io/dns_client.cxx +225 -0
- package/deps/couchbase-cxx-client/core/io/dns_client.hxx +19 -188
- package/deps/couchbase-cxx-client/core/io/http_context.hxx +1 -1
- package/deps/couchbase-cxx-client/core/io/http_session.hxx +10 -0
- package/deps/couchbase-cxx-client/core/io/http_session_manager.hxx +5 -3
- package/deps/couchbase-cxx-client/core/io/mcbp_command.hxx +9 -2
- package/deps/couchbase-cxx-client/core/io/mcbp_session.cxx +79 -35
- package/deps/couchbase-cxx-client/core/io/mcbp_session.hxx +4 -3
- package/deps/couchbase-cxx-client/core/io/retry_orchestrator.hxx +3 -2
- package/deps/couchbase-cxx-client/core/json_string.hxx +5 -0
- package/deps/couchbase-cxx-client/core/meta/CMakeLists.txt +7 -5
- package/deps/couchbase-cxx-client/core/meta/version.cxx +37 -4
- package/deps/couchbase-cxx-client/core/mozilla_ca_bundle.hxx +39 -0
- package/deps/couchbase-cxx-client/core/operations/document_analytics.cxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/document_analytics.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/document_append.hxx +1 -1
- package/deps/couchbase-cxx-client/core/operations/document_decrement.hxx +1 -1
- package/deps/couchbase-cxx-client/core/operations/document_exists.hxx +1 -1
- package/deps/couchbase-cxx-client/core/operations/document_get.hxx +1 -1
- package/deps/couchbase-cxx-client/core/operations/document_get_and_lock.hxx +1 -1
- package/deps/couchbase-cxx-client/core/operations/document_get_and_touch.hxx +1 -1
- package/deps/couchbase-cxx-client/core/operations/document_get_projected.hxx +1 -1
- package/deps/couchbase-cxx-client/core/operations/document_increment.hxx +1 -1
- package/deps/couchbase-cxx-client/core/operations/document_insert.hxx +1 -1
- package/deps/couchbase-cxx-client/core/operations/document_lookup_in.hxx +1 -1
- package/deps/couchbase-cxx-client/core/operations/document_mutate_in.hxx +1 -1
- package/deps/couchbase-cxx-client/core/operations/document_prepend.hxx +1 -1
- package/deps/couchbase-cxx-client/core/operations/document_query.cxx +2 -0
- package/deps/couchbase-cxx-client/core/operations/document_query.hxx +6 -0
- package/deps/couchbase-cxx-client/core/operations/document_remove.hxx +1 -1
- package/deps/couchbase-cxx-client/core/operations/document_replace.hxx +1 -1
- package/deps/couchbase-cxx-client/core/operations/document_search.cxx +9 -3
- package/deps/couchbase-cxx-client/core/operations/document_search.hxx +2 -2
- package/deps/couchbase-cxx-client/core/operations/document_touch.hxx +1 -1
- package/deps/couchbase-cxx-client/core/operations/document_unlock.hxx +1 -1
- package/deps/couchbase-cxx-client/core/operations/document_upsert.hxx +1 -1
- package/deps/couchbase-cxx-client/core/operations/document_view.hxx +1 -0
- package/deps/couchbase-cxx-client/core/operations/management/analytics_problem.hxx +2 -1
- package/deps/couchbase-cxx-client/core/operations/management/eventing_problem.hxx +2 -1
- package/deps/couchbase-cxx-client/core/platform/base64.cc +2 -1
- package/deps/couchbase-cxx-client/core/protocol/client_opcode.hxx +1 -0
- package/deps/couchbase-cxx-client/core/protocol/client_request.hxx +11 -2
- package/deps/couchbase-cxx-client/core/protocol/client_response.hxx +1 -0
- package/deps/couchbase-cxx-client/core/protocol/cmd_info.hxx +2 -1
- package/deps/couchbase-cxx-client/core/public_fwd.hxx +21 -0
- package/deps/couchbase-cxx-client/core/tls_verify_mode.hxx +26 -0
- package/deps/couchbase-cxx-client/core/topology/configuration.cxx +15 -2
- package/deps/couchbase-cxx-client/core/topology/configuration.hxx +5 -1
- package/deps/couchbase-cxx-client/core/transactions/active_transaction_record.hxx +2 -2
- package/deps/couchbase-cxx-client/core/transactions/atr_cleanup_entry.cxx +1 -0
- package/deps/couchbase-cxx-client/core/transactions/atr_ids.cxx +1 -1
- package/deps/couchbase-cxx-client/core/transactions/attempt_context_impl.cxx +78 -44
- package/deps/couchbase-cxx-client/core/transactions/attempt_context_impl.hxx +90 -59
- package/deps/couchbase-cxx-client/core/transactions/attempt_context_testing_hooks.cxx +93 -0
- package/deps/couchbase-cxx-client/core/transactions/attempt_context_testing_hooks.hxx +48 -75
- package/deps/couchbase-cxx-client/core/transactions/cleanup_testing_hooks.cxx +52 -0
- package/deps/couchbase-cxx-client/core/transactions/cleanup_testing_hooks.hxx +17 -31
- package/deps/couchbase-cxx-client/core/transactions/exceptions.cxx +0 -1
- package/deps/couchbase-cxx-client/core/transactions/exceptions.hxx +14 -11
- package/deps/couchbase-cxx-client/core/transactions/forward_compat.hxx +2 -2
- package/deps/couchbase-cxx-client/core/transactions/internal/transaction_context.hxx +14 -14
- package/deps/couchbase-cxx-client/core/transactions/internal/transaction_fields.hxx +1 -0
- package/deps/couchbase-cxx-client/core/transactions/internal/transactions_cleanup.hxx +7 -1
- package/deps/couchbase-cxx-client/core/transactions/staged_mutation.cxx +1 -1
- package/deps/couchbase-cxx-client/core/transactions/staged_mutation.hxx +12 -2
- package/deps/couchbase-cxx-client/core/transactions/transaction_context.cxx +9 -11
- package/deps/couchbase-cxx-client/core/transactions/transaction_get_result.cxx +41 -31
- package/deps/couchbase-cxx-client/core/transactions/transaction_get_result.hxx +69 -21
- package/deps/couchbase-cxx-client/core/transactions/transaction_links.hxx +13 -1
- package/deps/couchbase-cxx-client/core/transactions/transactions.cxx +5 -4
- package/deps/couchbase-cxx-client/core/transactions/transactions_cleanup.cxx +144 -155
- package/deps/couchbase-cxx-client/core/transactions/waitable_op_list.hxx +1 -0
- package/deps/couchbase-cxx-client/core/transactions.hxx +1 -1
- package/deps/couchbase-cxx-client/core/utils/connection_string.cxx +81 -46
- package/deps/couchbase-cxx-client/core/utils/connection_string.hxx +4 -3
- package/deps/couchbase-cxx-client/core/utils/crc32.hxx +3 -2
- package/deps/couchbase-cxx-client/core/utils/json.cxx +4 -1
- package/deps/couchbase-cxx-client/core/utils/json_streaming_lexer.hxx +2 -1
- package/deps/couchbase-cxx-client/core/utils/url_codec.cxx +2 -1
- package/deps/couchbase-cxx-client/couchbase/analytics_error_context.hxx +143 -0
- package/deps/couchbase-cxx-client/couchbase/analytics_meta_data.hxx +155 -0
- package/deps/couchbase-cxx-client/couchbase/analytics_metrics.hxx +163 -0
- package/deps/couchbase-cxx-client/couchbase/analytics_options.hxx +359 -0
- package/deps/couchbase-cxx-client/couchbase/analytics_result.hxx +102 -0
- package/deps/couchbase-cxx-client/couchbase/analytics_scan_consistency.hxx +46 -0
- package/deps/couchbase-cxx-client/couchbase/analytics_status.hxx +41 -0
- package/deps/couchbase-cxx-client/couchbase/analytics_warning.hxx +85 -0
- package/deps/couchbase-cxx-client/couchbase/behavior_options.hxx +10 -1
- package/deps/couchbase-cxx-client/couchbase/boolean_field_query.hxx +77 -0
- package/deps/couchbase-cxx-client/couchbase/boolean_query.hxx +223 -0
- package/deps/couchbase-cxx-client/couchbase/cluster.hxx +77 -3
- package/deps/couchbase-cxx-client/couchbase/cluster_options.hxx +10 -10
- package/deps/couchbase-cxx-client/couchbase/collection.hxx +22 -17
- package/deps/couchbase-cxx-client/couchbase/collection_query_index_manager.hxx +1 -1
- package/deps/couchbase-cxx-client/couchbase/common_options.hxx +1 -1
- package/deps/couchbase-cxx-client/couchbase/configuration_profile.hxx +1 -1
- package/deps/couchbase-cxx-client/couchbase/configuration_profiles_registry.hxx +0 -1
- package/deps/couchbase-cxx-client/couchbase/conjunction_query.hxx +88 -0
- package/deps/couchbase-cxx-client/couchbase/create_primary_query_index_options.hxx +1 -1
- package/deps/couchbase-cxx-client/couchbase/date_range.hxx +69 -0
- package/deps/couchbase-cxx-client/couchbase/date_range_facet.hxx +56 -0
- package/deps/couchbase-cxx-client/couchbase/date_range_facet_result.hxx +55 -0
- package/deps/couchbase-cxx-client/couchbase/date_range_query.hxx +265 -0
- package/deps/couchbase-cxx-client/couchbase/disjunction_query.hxx +109 -0
- package/deps/couchbase-cxx-client/couchbase/doc_id_query.hxx +111 -0
- package/deps/couchbase-cxx-client/couchbase/drop_primary_query_index_options.hxx +1 -1
- package/deps/couchbase-cxx-client/couchbase/drop_query_index_options.hxx +1 -1
- package/deps/couchbase-cxx-client/couchbase/error_context.hxx +17 -8
- package/deps/couchbase-cxx-client/couchbase/fmt/analytics_scan_consistency.hxx +52 -0
- package/deps/couchbase-cxx-client/couchbase/fmt/analytics_status.hxx +76 -0
- package/deps/couchbase-cxx-client/couchbase/fmt/cas.hxx +12 -0
- package/deps/couchbase-cxx-client/couchbase/fmt/durability_level.hxx +6 -0
- package/deps/couchbase-cxx-client/couchbase/fmt/key_value_error_map_attribute.hxx +94 -0
- package/deps/couchbase-cxx-client/couchbase/fmt/key_value_extended_error_info.hxx +6 -0
- package/deps/couchbase-cxx-client/couchbase/fmt/key_value_status_code.hxx +6 -0
- package/deps/couchbase-cxx-client/couchbase/fmt/mutation_token.hxx +6 -0
- package/deps/couchbase-cxx-client/couchbase/fmt/query_scan_consistency.hxx +6 -0
- package/deps/couchbase-cxx-client/couchbase/fmt/query_status.hxx +6 -0
- package/deps/couchbase-cxx-client/couchbase/fmt/retry_reason.hxx +6 -0
- package/deps/couchbase-cxx-client/couchbase/fmt/search_scan_consistency.hxx +49 -0
- package/deps/couchbase-cxx-client/couchbase/fmt/tls_verify_mode.hxx +6 -0
- package/deps/couchbase-cxx-client/couchbase/geo_bounding_box_query.hxx +107 -0
- package/deps/couchbase-cxx-client/couchbase/geo_distance_query.hxx +109 -0
- package/deps/couchbase-cxx-client/couchbase/geo_point.hxx +32 -0
- package/deps/couchbase-cxx-client/couchbase/geo_polygon_query.hxx +85 -0
- package/deps/couchbase-cxx-client/couchbase/get_all_query_indexes_options.hxx +5 -4
- package/deps/couchbase-cxx-client/couchbase/highlight_style.hxx +45 -0
- package/deps/couchbase-cxx-client/couchbase/key_value_error_context.hxx +7 -2
- package/deps/couchbase-cxx-client/couchbase/manager_error_context.hxx +1 -1
- package/deps/couchbase-cxx-client/couchbase/match_all_query.hxx +43 -0
- package/deps/couchbase-cxx-client/couchbase/match_none_query.hxx +43 -0
- package/deps/couchbase-cxx-client/couchbase/match_operator.hxx +45 -0
- package/deps/couchbase-cxx-client/couchbase/match_phrase_query.hxx +108 -0
- package/deps/couchbase-cxx-client/couchbase/match_query.hxx +163 -0
- package/deps/couchbase-cxx-client/couchbase/numeric_range.hxx +58 -0
- package/deps/couchbase-cxx-client/couchbase/numeric_range_facet.hxx +56 -0
- package/deps/couchbase-cxx-client/couchbase/numeric_range_facet_result.hxx +55 -0
- package/deps/couchbase-cxx-client/couchbase/numeric_range_query.hxx +143 -0
- package/deps/couchbase-cxx-client/couchbase/phrase_query.hxx +93 -0
- package/deps/couchbase-cxx-client/couchbase/prefix_query.hxx +82 -0
- package/deps/couchbase-cxx-client/couchbase/query_error_context.hxx +3 -1
- package/deps/couchbase-cxx-client/couchbase/query_index_manager.hxx +4 -2
- package/deps/couchbase-cxx-client/couchbase/query_options.hxx +0 -1
- package/deps/couchbase-cxx-client/couchbase/query_string_query.hxx +72 -0
- package/deps/couchbase-cxx-client/couchbase/regexp_query.hxx +82 -0
- package/deps/couchbase-cxx-client/couchbase/scope.hxx +74 -1
- package/deps/couchbase-cxx-client/couchbase/search_date_range.hxx +68 -0
- package/deps/couchbase-cxx-client/couchbase/search_error_context.hxx +138 -0
- package/deps/couchbase-cxx-client/couchbase/search_facet.hxx +60 -0
- package/deps/couchbase-cxx-client/couchbase/search_facet_result.hxx +50 -0
- package/deps/couchbase-cxx-client/couchbase/search_meta_data.hxx +85 -0
- package/deps/couchbase-cxx-client/couchbase/search_metrics.hxx +127 -0
- package/deps/couchbase-cxx-client/couchbase/search_numeric_range.hxx +69 -0
- package/deps/couchbase-cxx-client/couchbase/search_options.hxx +509 -0
- package/deps/couchbase-cxx-client/couchbase/search_query.hxx +69 -0
- package/deps/couchbase-cxx-client/couchbase/search_result.hxx +77 -0
- package/deps/couchbase-cxx-client/couchbase/search_row.hxx +104 -0
- package/deps/couchbase-cxx-client/couchbase/search_row_location.hxx +55 -0
- package/deps/couchbase-cxx-client/couchbase/search_row_locations.hxx +86 -0
- package/deps/couchbase-cxx-client/couchbase/search_scan_consistency.hxx +34 -0
- package/deps/couchbase-cxx-client/couchbase/search_sort.hxx +58 -0
- package/deps/couchbase-cxx-client/couchbase/search_sort_field.hxx +117 -0
- package/deps/couchbase-cxx-client/couchbase/search_sort_field_missing.hxx +26 -0
- package/deps/couchbase-cxx-client/couchbase/search_sort_field_mode.hxx +27 -0
- package/deps/couchbase-cxx-client/couchbase/search_sort_field_type.hxx +28 -0
- package/deps/couchbase-cxx-client/couchbase/search_sort_id.hxx +60 -0
- package/deps/couchbase-cxx-client/couchbase/search_sort_score.hxx +60 -0
- package/deps/couchbase-cxx-client/couchbase/search_term_range.hxx +51 -0
- package/deps/couchbase-cxx-client/couchbase/security_options.hxx +3 -0
- package/deps/couchbase-cxx-client/couchbase/subdoc/array_add_unique.hxx +2 -0
- package/deps/couchbase-cxx-client/couchbase/subdoc/array_append.hxx +2 -0
- package/deps/couchbase-cxx-client/couchbase/subdoc/array_insert.hxx +2 -0
- package/deps/couchbase-cxx-client/couchbase/subdoc/array_prepend.hxx +2 -0
- package/deps/couchbase-cxx-client/couchbase/subdoc/count.hxx +2 -0
- package/deps/couchbase-cxx-client/couchbase/subdoc/counter.hxx +2 -0
- package/deps/couchbase-cxx-client/couchbase/subdoc/exists.hxx +2 -0
- package/deps/couchbase-cxx-client/couchbase/subdoc/get.hxx +2 -0
- package/deps/couchbase-cxx-client/couchbase/subdoc/insert.hxx +2 -0
- package/deps/couchbase-cxx-client/couchbase/subdoc/remove.hxx +2 -0
- package/deps/couchbase-cxx-client/couchbase/subdoc/replace.hxx +3 -1
- package/deps/couchbase-cxx-client/couchbase/subdoc/upsert.hxx +2 -0
- package/deps/couchbase-cxx-client/couchbase/subdocument_error_context.hxx +4 -2
- package/deps/couchbase-cxx-client/couchbase/term_facet.hxx +48 -0
- package/deps/couchbase-cxx-client/couchbase/term_facet_result.hxx +55 -0
- package/deps/couchbase-cxx-client/couchbase/term_query.hxx +151 -0
- package/deps/couchbase-cxx-client/couchbase/term_range_query.hxx +142 -0
- package/deps/couchbase-cxx-client/couchbase/tracing/request_span.hxx +63 -0
- package/deps/couchbase-cxx-client/couchbase/tracing/request_tracer.hxx +2 -40
- package/deps/couchbase-cxx-client/couchbase/transaction_op_error_context.hxx +4 -4
- package/deps/couchbase-cxx-client/couchbase/transactions/async_attempt_context.hxx +93 -14
- package/deps/couchbase-cxx-client/couchbase/transactions/attempt_context.hxx +88 -15
- package/deps/couchbase-cxx-client/couchbase/transactions/transaction_get_result.hxx +55 -35
- package/deps/couchbase-cxx-client/couchbase/transactions/transaction_keyspace.hxx +11 -1
- package/deps/couchbase-cxx-client/couchbase/transactions/transaction_options.hxx +79 -8
- package/deps/couchbase-cxx-client/couchbase/transactions/transaction_query_options.hxx +128 -15
- package/deps/couchbase-cxx-client/couchbase/transactions/transaction_query_result.hxx +6 -21
- package/deps/couchbase-cxx-client/couchbase/transactions/transaction_result.hxx +1 -2
- package/deps/couchbase-cxx-client/couchbase/transactions/transactions_cleanup_config.hxx +5 -3
- package/deps/couchbase-cxx-client/couchbase/transactions/transactions_config.hxx +9 -5
- package/deps/couchbase-cxx-client/couchbase/transactions/transactions_query_config.hxx +6 -3
- package/deps/couchbase-cxx-client/couchbase/transactions.hxx +37 -3
- package/deps/couchbase-cxx-client/couchbase/wildcard_query.hxx +83 -0
- package/deps/couchbase-cxx-client/docs/Doxyfile.in +325 -224
- package/deps/couchbase-cxx-client/docs/cbc-analytics.md +171 -0
- package/deps/couchbase-cxx-client/docs/cbc-get.md +161 -0
- package/deps/couchbase-cxx-client/docs/cbc-pillowfight.md +168 -0
- package/deps/couchbase-cxx-client/docs/cbc-query.md +179 -0
- package/deps/couchbase-cxx-client/docs/cbc.md +46 -0
- package/deps/couchbase-cxx-client/docs/cli.hxx +33 -0
- package/deps/couchbase-cxx-client/docs/doxygen-awesome.css +474 -89
- package/deps/couchbase-cxx-client/docs/mainpage.hxx +46 -8
- package/deps/couchbase-cxx-client/docs/stability.hxx +15 -0
- package/deps/couchbase-cxx-client/examples/async_game_server.cxx +56 -54
- package/deps/couchbase-cxx-client/examples/distributed_mutex.cxx +2 -0
- package/deps/couchbase-cxx-client/examples/game_server.cxx +9 -10
- package/deps/couchbase-cxx-client/test/CMakeLists.txt +10 -7
- package/deps/couchbase-cxx-client/test/benchmark_helper_integration.hxx +2 -2
- package/deps/couchbase-cxx-client/test/data/search_beers_dataset.json +70 -0
- package/deps/couchbase-cxx-client/test/data/search_beers_index_params.json +108 -0
- package/deps/couchbase-cxx-client/test/test_helper.hxx +6 -6
- package/deps/couchbase-cxx-client/test/test_integration_analytics.cxx +314 -16
- package/deps/couchbase-cxx-client/test/test_integration_collections.cxx +7 -3
- package/deps/couchbase-cxx-client/test/test_integration_connect.cxx +7 -3
- package/deps/couchbase-cxx-client/test/test_integration_crud.cxx +19 -2
- package/deps/couchbase-cxx-client/test/test_integration_diagnostics.cxx +11 -5
- package/deps/couchbase-cxx-client/test/test_integration_durability.cxx +12 -7
- package/deps/couchbase-cxx-client/test/test_integration_examples.cxx +454 -0
- package/deps/couchbase-cxx-client/test/test_integration_management.cxx +162 -94
- package/deps/couchbase-cxx-client/test/test_integration_query.cxx +68 -10
- package/deps/couchbase-cxx-client/test/test_integration_range_scan.cxx +12 -12
- package/deps/couchbase-cxx-client/test/test_integration_read_replica.cxx +48 -11
- package/deps/couchbase-cxx-client/test/test_integration_search.cxx +621 -0
- package/deps/couchbase-cxx-client/test/test_integration_subdoc.cxx +62 -11
- package/deps/couchbase-cxx-client/test/test_integration_tracer.cxx +5 -0
- package/deps/couchbase-cxx-client/test/test_integration_transcoders.cxx +13 -5
- package/deps/couchbase-cxx-client/test/test_transaction_context.cxx +550 -0
- package/deps/couchbase-cxx-client/test/test_transaction_examples.cxx +195 -0
- package/deps/couchbase-cxx-client/test/test_transaction_public_async_api.cxx +393 -0
- package/deps/couchbase-cxx-client/test/test_transaction_public_blocking_api.cxx +653 -0
- package/deps/couchbase-cxx-client/test/test_transaction_simple.cxx +984 -0
- package/deps/couchbase-cxx-client/test/test_transaction_simple_async.cxx +970 -0
- package/deps/couchbase-cxx-client/test/test_unit_config_profiles.cxx +13 -13
- package/deps/couchbase-cxx-client/test/test_unit_connection_string.cxx +64 -0
- package/deps/couchbase-cxx-client/test/test_unit_json_transcoder.cxx +4 -0
- package/deps/couchbase-cxx-client/test/test_unit_search.cxx +427 -0
- package/deps/couchbase-cxx-client/test/test_unit_transaction_utils.cxx +113 -0
- package/deps/couchbase-cxx-client/test/test_unit_utils.cxx +8 -4
- package/deps/couchbase-cxx-client/test/utils/CMakeLists.txt +13 -9
- package/deps/couchbase-cxx-client/test/utils/integration_shortcuts.hxx +3 -3
- package/deps/couchbase-cxx-client/test/utils/integration_test_guard.cxx +20 -9
- package/deps/couchbase-cxx-client/test/utils/logger.cxx +3 -1
- package/deps/couchbase-cxx-client/test/utils/server_version.hxx +39 -13
- package/deps/couchbase-cxx-client/test/utils/test_context.cxx +8 -0
- package/deps/couchbase-cxx-client/test/utils/test_data.cxx +41 -0
- package/deps/couchbase-cxx-client/test/utils/test_data.hxx +29 -0
- package/deps/couchbase-cxx-client/test/utils/wait_until.cxx +61 -0
- package/deps/couchbase-cxx-client/test/utils/wait_until.hxx +8 -1
- package/deps/couchbase-cxx-client/third_party/catch2/.bazelrc +10 -0
- package/deps/couchbase-cxx-client/third_party/catch2/.conan/build.py +4 -4
- package/deps/couchbase-cxx-client/third_party/catch2/.conan/test_package/CMakeLists.txt +5 -4
- package/deps/couchbase-cxx-client/third_party/catch2/.conan/test_package/conanfile.py +3 -2
- package/deps/couchbase-cxx-client/third_party/catch2/.conan/test_package/test_package.cpp +1 -3
- package/deps/couchbase-cxx-client/third_party/catch2/.github/FUNDING.yml +1 -0
- package/deps/couchbase-cxx-client/third_party/catch2/.github/workflows/linux-bazel-builds.yml +24 -0
- package/deps/couchbase-cxx-client/third_party/catch2/.github/workflows/linux-meson-builds.yml +43 -0
- package/deps/couchbase-cxx-client/third_party/catch2/.github/workflows/linux-other-builds.yml +104 -0
- package/deps/couchbase-cxx-client/third_party/catch2/.github/workflows/linux-simple-builds.yml +122 -0
- package/deps/couchbase-cxx-client/third_party/catch2/.github/workflows/mac-builds.yml +52 -0
- package/deps/couchbase-cxx-client/third_party/catch2/.github/workflows/validate-header-guards.yml +36 -0
- package/deps/couchbase-cxx-client/third_party/catch2/.github/workflows/windows-simple-builds.yml +37 -0
- package/deps/couchbase-cxx-client/third_party/catch2/BUILD.bazel +83 -8
- package/deps/couchbase-cxx-client/third_party/catch2/CMake/CatchConfigOptions.cmake +79 -0
- package/deps/couchbase-cxx-client/third_party/catch2/CMake/CatchMiscFunctions.cmake +120 -0
- package/deps/couchbase-cxx-client/third_party/catch2/CMake/catch2-with-main.pc.in +10 -0
- package/deps/couchbase-cxx-client/third_party/catch2/CMake/catch2.pc.in +5 -1
- package/deps/couchbase-cxx-client/third_party/catch2/CMakeLists.txt +98 -152
- package/deps/couchbase-cxx-client/third_party/catch2/CMakePresets.json +25 -0
- package/deps/couchbase-cxx-client/third_party/catch2/Doxyfile +2484 -0
- package/deps/couchbase-cxx-client/third_party/catch2/README.md +83 -17
- package/deps/couchbase-cxx-client/third_party/catch2/SECURITY.md +19 -0
- package/deps/couchbase-cxx-client/third_party/catch2/WORKSPACE.bazel +16 -0
- package/deps/couchbase-cxx-client/third_party/catch2/appveyor.yml +55 -73
- package/deps/couchbase-cxx-client/third_party/catch2/codecov.yml +3 -6
- package/deps/couchbase-cxx-client/third_party/catch2/conanfile.py +44 -14
- package/deps/couchbase-cxx-client/third_party/catch2/data/artwork/catch2-logo-small-with-background.png +0 -0
- package/deps/couchbase-cxx-client/third_party/catch2/docs/Readme.md +18 -16
- package/deps/couchbase-cxx-client/third_party/catch2/docs/assertions.md +45 -64
- package/deps/couchbase-cxx-client/third_party/catch2/docs/benchmarks.md +3 -6
- package/deps/couchbase-cxx-client/third_party/catch2/docs/ci-and-misc.md +27 -29
- package/deps/couchbase-cxx-client/third_party/catch2/docs/cmake-integration.md +157 -35
- package/deps/couchbase-cxx-client/third_party/catch2/docs/command-line.md +232 -65
- package/deps/couchbase-cxx-client/third_party/catch2/docs/commercial-users.md +14 -13
- package/deps/couchbase-cxx-client/third_party/catch2/docs/comparing-floating-point-numbers.md +192 -0
- package/deps/couchbase-cxx-client/third_party/catch2/docs/configuration.md +48 -54
- package/deps/couchbase-cxx-client/third_party/catch2/docs/contributing.md +150 -38
- package/deps/couchbase-cxx-client/third_party/catch2/docs/deprecations.md +14 -118
- package/deps/couchbase-cxx-client/third_party/catch2/docs/event-listeners.md +31 -62
- package/deps/couchbase-cxx-client/third_party/catch2/docs/faq.md +94 -0
- package/deps/couchbase-cxx-client/third_party/catch2/docs/generators.md +14 -10
- package/deps/couchbase-cxx-client/third_party/catch2/docs/limitations.md +34 -36
- package/deps/couchbase-cxx-client/third_party/catch2/docs/list-of-examples.md +0 -3
- package/deps/couchbase-cxx-client/third_party/catch2/docs/logging.md +2 -2
- package/deps/couchbase-cxx-client/third_party/catch2/docs/matchers.md +355 -122
- package/deps/couchbase-cxx-client/third_party/catch2/docs/migrate-v2-to-v3.md +98 -0
- package/deps/couchbase-cxx-client/third_party/catch2/docs/opensource-users.md +43 -13
- package/deps/couchbase-cxx-client/third_party/catch2/docs/other-macros.md +19 -18
- package/deps/couchbase-cxx-client/third_party/catch2/docs/own-main.md +50 -49
- package/deps/couchbase-cxx-client/third_party/catch2/docs/release-notes.md +375 -6
- package/deps/couchbase-cxx-client/third_party/catch2/docs/release-process.md +9 -16
- package/deps/couchbase-cxx-client/third_party/catch2/docs/reporter-events.md +175 -0
- package/deps/couchbase-cxx-client/third_party/catch2/docs/reporters.md +191 -25
- package/deps/couchbase-cxx-client/third_party/catch2/docs/skipping-passing-failing.md +129 -0
- package/deps/couchbase-cxx-client/third_party/catch2/docs/test-cases-and-sections.md +91 -20
- package/deps/couchbase-cxx-client/third_party/catch2/docs/test-fixtures.md +28 -9
- package/deps/couchbase-cxx-client/third_party/catch2/docs/tostring.md +3 -3
- package/deps/couchbase-cxx-client/third_party/catch2/docs/tutorial.md +87 -139
- package/deps/couchbase-cxx-client/third_party/catch2/docs/usage-tips.md +100 -0
- package/deps/couchbase-cxx-client/third_party/catch2/docs/why-catch.md +24 -11
- package/deps/couchbase-cxx-client/third_party/catch2/examples/010-TestCase.cpp +4 -7
- package/deps/couchbase-cxx-client/third_party/catch2/examples/020-TestCase-1.cpp +3 -9
- package/deps/couchbase-cxx-client/third_party/catch2/examples/020-TestCase-2.cpp +2 -2
- package/deps/couchbase-cxx-client/third_party/catch2/examples/030-Asn-Require-Check.cpp +5 -5
- package/deps/couchbase-cxx-client/third_party/catch2/examples/100-Fix-Section.cpp +5 -4
- package/deps/couchbase-cxx-client/third_party/catch2/examples/110-Fix-ClassFixture.cpp +7 -4
- package/deps/couchbase-cxx-client/third_party/catch2/examples/120-Bdd-ScenarioGivenWhenThen.cpp +4 -4
- package/deps/couchbase-cxx-client/third_party/catch2/examples/210-Evt-EventListeners.cpp +51 -44
- package/deps/couchbase-cxx-client/third_party/catch2/examples/231-Cfg-OutputStreams.cpp +3 -4
- package/deps/couchbase-cxx-client/third_party/catch2/examples/300-Gen-OwnGenerator.cpp +13 -3
- package/deps/couchbase-cxx-client/third_party/catch2/examples/301-Gen-MapTypeConversion.cpp +9 -7
- package/deps/couchbase-cxx-client/third_party/catch2/examples/302-Gen-Table.cpp +4 -3
- package/deps/couchbase-cxx-client/third_party/catch2/examples/310-Gen-VariablesInGenerators.cpp +3 -1
- package/deps/couchbase-cxx-client/third_party/catch2/examples/311-Gen-CustomCapture.cpp +3 -1
- package/deps/couchbase-cxx-client/third_party/catch2/examples/CMakeLists.txt +29 -126
- package/deps/couchbase-cxx-client/third_party/catch2/extras/Catch.cmake +279 -0
- package/deps/couchbase-cxx-client/third_party/catch2/extras/CatchAddTests.cmake +187 -0
- package/deps/couchbase-cxx-client/third_party/catch2/extras/CatchShardTests.cmake +74 -0
- package/deps/couchbase-cxx-client/third_party/catch2/extras/CatchShardTestsImpl.cmake +52 -0
- package/deps/couchbase-cxx-client/third_party/catch2/extras/catch_amalgamated.cpp +10655 -0
- package/deps/couchbase-cxx-client/third_party/catch2/extras/catch_amalgamated.hpp +12972 -0
- package/deps/couchbase-cxx-client/third_party/catch2/fuzzing/CMakeLists.txt +20 -0
- package/deps/couchbase-cxx-client/third_party/catch2/fuzzing/NullOStream.cpp +10 -0
- package/deps/couchbase-cxx-client/third_party/catch2/fuzzing/NullOStream.h +20 -0
- package/deps/couchbase-cxx-client/third_party/catch2/fuzzing/build_fuzzers.sh +33 -0
- package/deps/couchbase-cxx-client/third_party/catch2/fuzzing/fuzz_TestSpecParser.cpp +16 -0
- package/deps/couchbase-cxx-client/third_party/catch2/fuzzing/fuzz_XmlWriter.cpp +16 -0
- package/deps/couchbase-cxx-client/third_party/catch2/fuzzing/fuzz_textflow.cpp +47 -0
- package/deps/couchbase-cxx-client/third_party/catch2/mdsnippets.json +9 -0
- package/deps/couchbase-cxx-client/third_party/catch2/meson.build +17 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/CMakeLists.txt +510 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/catch_benchmark.hpp +147 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/catch_benchmark_all.hpp +46 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/catch_chronometer.cpp +17 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/catch_chronometer.hpp +74 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/catch_clock.hpp +39 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/catch_constructor.hpp +82 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/catch_environment.hpp +37 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/catch_estimate.hpp +30 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/catch_execution_plan.hpp +58 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/catch_optimizer.hpp +78 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/catch_outlier_classification.hpp +29 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/catch_sample_analysis.hpp +49 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/detail/catch_analyse.hpp +79 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/detail/catch_benchmark_function.cpp +17 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/detail/catch_benchmark_function.hpp +107 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/detail/catch_benchmark_stats.hpp +64 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/detail/catch_benchmark_stats_fwd.hpp +23 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/detail/catch_complete_invoke.hpp +58 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/detail/catch_estimate_clock.hpp +121 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/detail/catch_measure.hpp +32 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/detail/catch_repeat.hpp +36 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/detail/catch_run_for_at_least.cpp +31 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/detail/catch_run_for_at_least.hpp +65 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/detail/catch_stats.cpp +257 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/detail/catch_stats.hpp +144 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/benchmark/detail/catch_timing.hpp +31 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_all.hpp +127 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_approx.cpp +85 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_approx.hpp +128 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_assertion_info.hpp +28 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_assertion_result.cpp +105 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_assertion_result.hpp +60 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_config.cpp +247 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_config.hpp +153 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_get_random_seed.cpp +18 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_get_random_seed.hpp +18 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_message.cpp +116 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_message.hpp +148 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_registry_hub.cpp +105 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_section_info.hpp +42 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_session.cpp +363 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_session.hpp +62 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_tag_alias.hpp +29 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_tag_alias_autoregistrar.cpp +24 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_tag_alias_autoregistrar.hpp +29 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_template_test_macros.hpp +124 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_test_case_info.cpp +247 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_test_case_info.hpp +131 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_test_macros.hpp +226 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_test_spec.cpp +138 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_test_spec.hpp +119 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_timer.cpp +37 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_timer.hpp +27 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_tostring.cpp +254 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_tostring.hpp +668 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_totals.cpp +65 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_totals.hpp +41 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_translate_exception.cpp +20 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_translate_exception.hpp +88 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_user_config.hpp.in +210 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_version.cpp +43 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_version.hpp +39 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/catch_version_macros.hpp +15 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/generators/catch_generator_exception.cpp +17 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/generators/catch_generator_exception.hpp +31 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/generators/catch_generators.cpp +42 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/generators/catch_generators.hpp +250 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/generators/catch_generators_adapters.hpp +241 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/generators/catch_generators_all.hpp +30 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/generators/catch_generators_random.cpp +13 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/generators/catch_generators_random.hpp +98 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/generators/catch_generators_range.hpp +110 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/interfaces/catch_interfaces_all.hpp +37 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/interfaces/catch_interfaces_capture.cpp +13 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/interfaces/catch_interfaces_capture.hpp +109 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/interfaces/catch_interfaces_config.cpp +13 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/interfaces/catch_interfaces_config.hpp +100 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/interfaces/catch_interfaces_enum_values_registry.hpp +47 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/interfaces/catch_interfaces_exception.cpp +14 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/interfaces/catch_interfaces_exception.hpp +36 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/interfaces/catch_interfaces_generatortracker.cpp +32 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/interfaces/catch_interfaces_generatortracker.hpp +90 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/interfaces/catch_interfaces_registry_hub.cpp +14 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/interfaces/catch_interfaces_registry_hub.hpp +66 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/interfaces/catch_interfaces_reporter.cpp +101 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/interfaces/catch_interfaces_reporter.hpp +224 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/interfaces/catch_interfaces_reporter_factory.cpp +14 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/interfaces/catch_interfaces_reporter_factory.hpp +45 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/interfaces/catch_interfaces_tag_alias_registry.hpp +29 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/interfaces/catch_interfaces_test_invoker.hpp +21 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/interfaces/catch_interfaces_testcase.cpp +13 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/interfaces/catch_interfaces_testcase.hpp +36 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_assertion_handler.cpp +82 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_assertion_handler.hpp +68 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_case_insensitive_comparisons.cpp +35 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_case_insensitive_comparisons.hpp +30 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_case_sensitive.hpp +17 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_clara.cpp +448 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_clara.hpp +702 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_commandline.cpp +313 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_commandline.hpp +21 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_compare_traits.hpp +75 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_compiler_capabilities.hpp +430 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_config_android_logwrite.hpp +33 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_config_counter.hpp +32 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_config_uncaught_exceptions.hpp +44 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_config_wchar.hpp +33 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_console_colour.cpp +282 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_console_colour.hpp +141 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_console_width.hpp +19 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_container_nonmembers.hpp +73 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_context.cpp +41 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_context.hpp +51 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_debug_console.cpp +45 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_debug_console.hpp +17 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_debugger.cpp +120 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_debugger.hpp +67 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_decomposer.cpp +23 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_decomposer.hpp +340 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_enforce.cpp +41 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_enforce.hpp +54 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_enum_values_registry.cpp +73 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_enum_values_registry.hpp +36 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_errno_guard.cpp +16 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_errno_guard.hpp +27 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_exception_translator_registry.cpp +84 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_exception_translator_registry.hpp +30 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_fatal_condition_handler.cpp +243 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_fatal_condition_handler.hpp +69 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_floating_point_helpers.cpp +32 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_floating_point_helpers.hpp +103 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_getenv.cpp +37 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_getenv.hpp +20 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_is_permutation.hpp +138 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_istream.cpp +159 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_istream.hpp +54 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_lazy_expr.cpp +29 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_lazy_expr.hpp +40 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_leak_detector.cpp +38 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_leak_detector.hpp +19 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_list.cpp +123 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_list.hpp +43 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_logical_traits.hpp +44 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_main.cpp +39 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_message_info.cpp +25 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_message_info.hpp +42 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_meta.hpp +47 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_move_and_forward.hpp +19 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_noncopyable.hpp +28 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_optional.hpp +100 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_output_redirect.cpp +146 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_output_redirect.hpp +118 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_parse_numbers.cpp +52 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_parse_numbers.hpp +26 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_platform.hpp +37 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_polyfills.cpp +34 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_polyfills.hpp +16 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_preprocessor.hpp +237 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_preprocessor_remove_parens.hpp +19 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_random_number_generator.cpp +70 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_random_number_generator.hpp +59 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_random_seed_generation.cpp +34 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_random_seed_generation.hpp +26 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_reporter_registry.cpp +88 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_reporter_registry.hpp +55 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_reporter_spec_parser.cpp +173 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_reporter_spec_parser.hpp +85 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_result_type.cpp +26 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_result_type.hpp +57 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_reusable_string_stream.cpp +62 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_reusable_string_stream.hpp +57 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_run_context.cpp +688 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_run_context.hpp +160 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_section.cpp +60 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_section.hpp +53 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_sharding.hpp +42 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_singletons.cpp +36 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_singletons.hpp +45 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_source_line_info.cpp +33 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_source_line_info.hpp +37 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_startup_exception_registry.cpp +29 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_startup_exception_registry.hpp +29 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_stdstreams.cpp +24 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_stdstreams.hpp +22 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_stream_end_stop.hpp +30 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_string_manip.cpp +104 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_string_manip.hpp +61 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_stringref.cpp +66 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_stringref.hpp +121 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_tag_alias_registry.cpp +55 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_tag_alias_registry.hpp +33 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_template_test_registry.hpp +337 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_test_case_info_hasher.cpp +39 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_test_case_info_hasher.hpp +29 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_test_case_registry_impl.cpp +146 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_test_case_registry_impl.hpp +62 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_test_case_tracker.cpp +239 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_test_case_tracker.hpp +244 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_test_failure_exception.cpp +31 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_test_failure_exception.hpp +34 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_test_macro_impl.hpp +159 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_test_registry.cpp +82 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_test_registry.hpp +132 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_test_run_info.hpp +22 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_test_spec_parser.cpp +239 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_test_spec_parser.hpp +81 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_textflow.cpp +255 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_textflow.hpp +169 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_to_string.hpp +29 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_uncaught_exceptions.cpp +26 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_uncaught_exceptions.hpp +15 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_unique_name.hpp +20 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_unique_ptr.hpp +118 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_void_type.hpp +25 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_wildcard_pattern.cpp +47 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_wildcard_pattern.hpp +38 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_windows_h_proxy.hpp +28 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_xmlwriter.cpp +348 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/internal/catch_xmlwriter.hpp +152 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/catch_matchers.cpp +25 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/catch_matchers.hpp +237 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/catch_matchers_all.hpp +36 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/catch_matchers_container_properties.cpp +34 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/catch_matchers_container_properties.hpp +90 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/catch_matchers_contains.hpp +102 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/catch_matchers_exception.cpp +26 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/catch_matchers_exception.hpp +61 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/catch_matchers_floating_point.cpp +241 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/catch_matchers_floating_point.hpp +94 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/catch_matchers_predicate.cpp +17 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/catch_matchers_predicate.hpp +59 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/catch_matchers_quantifiers.cpp +24 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/catch_matchers_quantifiers.hpp +165 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/catch_matchers_range_equals.hpp +144 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/catch_matchers_string.cpp +114 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/catch_matchers_string.hpp +85 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/catch_matchers_templated.cpp +41 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/catch_matchers_templated.hpp +296 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/catch_matchers_vector.hpp +194 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/internal/catch_matchers_impl.cpp +25 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/matchers/internal/catch_matchers_impl.hpp +83 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/meson.build +368 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_automake.cpp +37 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_automake.hpp +38 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_common_base.cpp +49 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_common_base.hpp +79 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_compact.cpp +254 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_compact.hpp +39 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_console.cpp +656 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_console.hpp +67 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_cumulative_base.cpp +159 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_cumulative_base.hpp +151 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_event_listener.cpp +40 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_event_listener.hpp +60 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_helpers.cpp +343 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_helpers.hpp +95 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_junit.cpp +309 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_junit.hpp +58 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_multi.cpp +197 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_multi.hpp +72 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_registrars.cpp +36 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_registrars.hpp +131 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_sonarqube.cpp +162 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_sonarqube.hpp +61 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_streaming_base.cpp +23 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_streaming_base.hpp +73 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_tap.cpp +229 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_tap.hpp +43 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_teamcity.cpp +177 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_teamcity.hpp +66 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_xml.cpp +336 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporter_xml.hpp +66 -0
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch2/reporters/catch_reporters_all.hpp +40 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/CMakeLists.txt +665 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/CMakeLists.txt +554 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/ToDo.txt +10 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X01-PrefixedMacros.cpp +97 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X02-DisabledMacros.cpp +65 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X03-DisabledExceptions-DefaultHandler.cpp +39 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X04-DisabledExceptions-CustomHandler.cpp +40 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X05-DeferredStaticChecks.cpp +21 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X10-FallbackStringifier.cpp +35 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X11-DisableStringification.cpp +27 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X12-CustomDebugBreakMacro.cpp +26 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X21-PartialTestCaseEvents.cpp +74 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X22-BenchmarksInCumulativeReporter.cpp +79 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X23-CasingInReporterNames.cpp +41 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X24-ListenerStdoutCaptureInMultireporter.cpp +40 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X25-ListenerCanAskForCapturedStdout.cpp +47 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X26-ReporterPreferencesForPassingAssertionsIsRespected.cpp +52 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X27-CapturedStdoutInTestCaseEvents.cpp +82 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X28-ListenersGetEventsBeforeReporters.cpp +99 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X29-CustomArgumentsForReporters.cpp +59 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X30-BazelReporter.cpp +17 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X31-DuplicatedTestCases.cpp +16 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X32-DuplicatedTestCasesDifferentTags.cpp +17 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X33-DuplicatedTestCaseMethods.cpp +22 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X34-DuplicatedTestCaseMethodsDifferentFixtures.cpp +27 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X35-DuplicatedReporterNames.cpp +31 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X90-WindowsHeaderInclusion.cpp +21 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X91-AmalgamatedCatch.cpp +38 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X92-NoTests.cpp +11 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/ExtraTests/X93-AllSkipped.cpp +16 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/Baselines/automake.sw.approved.txt +420 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/Baselines/automake.sw.multi.approved.txt +409 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/Baselines/compact.sw.approved.txt +2544 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/Baselines/compact.sw.multi.approved.txt +2533 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/Baselines/console.std.approved.txt +1538 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/Baselines/console.sw.approved.txt +18236 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/Baselines/console.sw.multi.approved.txt +18225 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/Baselines/console.swa4.approved.txt +956 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/Baselines/default.sw.multi.approved.txt +11 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/Baselines/junit.sw.approved.txt +2052 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/Baselines/junit.sw.multi.approved.txt +2051 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/Baselines/sonarqube.sw.approved.txt +2071 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/Baselines/sonarqube.sw.multi.approved.txt +2070 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/Baselines/tap.sw.approved.txt +4481 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/Baselines/tap.sw.multi.approved.txt +4470 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/Baselines/teamcity.sw.approved.txt +998 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/Baselines/teamcity.sw.multi.approved.txt +997 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/Baselines/xml.sw.approved.txt +21208 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/Baselines/xml.sw.multi.approved.txt +21207 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/Algorithms.tests.cpp +94 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/Clara.tests.cpp +73 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/CmdLine.tests.cpp +467 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/CmdLineHelpers.tests.cpp +111 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/ColourImpl.tests.cpp +64 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/Details.tests.cpp +131 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/FloatingPoint.tests.cpp +74 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/GeneratorsImpl.tests.cpp +546 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/InternalBenchmark.tests.cpp +447 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/Parse.tests.cpp +38 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/PartTracker.tests.cpp +254 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/RandomNumberGeneration.tests.cpp +62 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/Reporters.tests.cpp +328 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/Sharding.tests.cpp +45 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/Stream.tests.cpp +32 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/String.tests.cpp +212 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/StringManip.tests.cpp +83 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/Tag.tests.cpp +104 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/TestCaseInfoHasher.tests.cpp +72 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/TestSpec.tests.cpp +365 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/TestSpecParser.tests.cpp +55 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/TextFlow.tests.cpp +200 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/ToString.tests.cpp +97 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/Traits.tests.cpp +45 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/UniquePtr.tests.cpp +141 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/IntrospectiveTests/Xml.tests.cpp +183 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/TestRegistrations.cpp +181 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/TimingTests/Sleep.tests.cpp +24 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/Approx.tests.cpp +218 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/BDD.tests.cpp +106 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/Benchmark.tests.cpp +173 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/Class.tests.cpp +133 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/Compilation.tests.cpp +355 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/Condition.tests.cpp +334 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/Decomposition.tests.cpp +41 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/EnumToString.tests.cpp +108 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/Exception.tests.cpp +204 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/Generators.tests.cpp +313 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/Matchers.tests.cpp +1144 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/MatchersRanges.tests.cpp +917 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/Message.tests.cpp +287 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/Misc.tests.cpp +553 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/Skip.tests.cpp +73 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/ToStringByte.tests.cpp +23 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/ToStringChrono.tests.cpp +51 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/ToStringGeneral.tests.cpp +211 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/ToStringOptional.tests.cpp +31 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/ToStringPair.tests.cpp +38 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/ToStringTuple.tests.cpp +54 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/ToStringVariant.tests.cpp +99 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/ToStringVector.tests.cpp +94 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/ToStringWhich.tests.cpp +186 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/Tricky.tests.cpp +380 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/UsageTests/VariadicMacros.tests.cpp +29 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/helpers/parse_test_spec.cpp +22 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/helpers/parse_test_spec.hpp +20 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/helpers/range_test_helpers.hpp +210 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/SelfTest/helpers/type_with_lit_0_comparisons.hpp +44 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/TestScripts/ConfigureTestsCommon.py +75 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/TestScripts/testBazelReporter.py +104 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/TestScripts/testBazelSharding.py +75 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/TestScripts/testConfigureDefaultReporter.py +41 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/TestScripts/testConfigureDisable.py +48 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/TestScripts/testConfigureDisableStringification.py +44 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/TestScripts/testConfigureExperimentalRedirect.py +49 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/TestScripts/testPartialTestCaseEvent.py +79 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/TestScripts/testRandomOrder.py +77 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/TestScripts/testSharding.py +165 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tests/meson.build +76 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tools/misc/appveyorBuildConfigurationScript.bat +21 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tools/misc/appveyorMergeCoverageScript.py +9 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tools/misc/appveyorTestRunScript.bat +17 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tools/misc/coverage-helper.cpp +142 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tools/misc/installOpenCppCoverage.ps1 +19 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tools/scripts/approvalTests.py +243 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tools/scripts/approve.py +31 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tools/scripts/buildAndTest.cmd +17 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tools/scripts/buildAndTest.sh +19 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tools/scripts/checkConvenienceHeaders.py +151 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tools/scripts/checkDuplicateFilenames.py +14 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tools/scripts/checkLicense.py +45 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tools/scripts/developBuild.py +9 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tools/scripts/extractFeaturesFromReleaseNotes.py +92 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tools/scripts/fixWhitespace.py +51 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tools/scripts/generateAmalgamatedFiles.py +129 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tools/scripts/majorRelease.py +9 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tools/scripts/minorRelease.py +9 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tools/scripts/patchRelease.py +9 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tools/scripts/releaseCommon.py +143 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tools/scripts/scriptCommon.py +4 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tools/scripts/updateDocumentSnippets.py +23 -0
- package/deps/couchbase-cxx-client/third_party/catch2/tools/scripts/updateDocumentToC.py +447 -0
- package/deps/couchbase-cxx-client/third_party/snappy/.github/workflows/build.yml +135 -0
- package/deps/couchbase-cxx-client/third_party/snappy/.gitmodules +6 -0
- package/deps/couchbase-cxx-client/third_party/snappy/CMakeLists.txt +150 -27
- package/deps/couchbase-cxx-client/third_party/snappy/CONTRIBUTING.md +9 -4
- package/deps/couchbase-cxx-client/third_party/snappy/NEWS +12 -0
- package/deps/couchbase-cxx-client/third_party/snappy/README.md +52 -35
- package/deps/couchbase-cxx-client/third_party/snappy/cmake/config.h.in +28 -24
- package/deps/couchbase-cxx-client/third_party/snappy/snappy-internal.h +189 -25
- package/deps/couchbase-cxx-client/third_party/snappy/snappy-sinksource.cc +26 -9
- package/deps/couchbase-cxx-client/third_party/snappy/snappy-sinksource.h +11 -11
- package/deps/couchbase-cxx-client/third_party/snappy/snappy-stubs-internal.cc +1 -1
- package/deps/couchbase-cxx-client/third_party/snappy/snappy-stubs-internal.h +227 -308
- package/deps/couchbase-cxx-client/third_party/snappy/snappy-stubs-public.h.in +0 -11
- package/deps/couchbase-cxx-client/third_party/snappy/snappy-test.cc +88 -198
- package/deps/couchbase-cxx-client/third_party/snappy/snappy-test.h +102 -285
- package/deps/couchbase-cxx-client/third_party/snappy/snappy.cc +1176 -410
- package/deps/couchbase-cxx-client/third_party/snappy/snappy.h +19 -4
- package/deps/couchbase-cxx-client/third_party/snappy/snappy_benchmark.cc +378 -0
- package/deps/couchbase-cxx-client/third_party/snappy/snappy_compress_fuzzer.cc +3 -2
- package/deps/couchbase-cxx-client/third_party/snappy/snappy_test_data.cc +57 -0
- package/deps/couchbase-cxx-client/third_party/snappy/snappy_test_data.h +68 -0
- package/deps/couchbase-cxx-client/third_party/snappy/snappy_test_tool.cc +471 -0
- package/deps/couchbase-cxx-client/third_party/snappy/snappy_uncompress_fuzzer.cc +3 -2
- package/deps/couchbase-cxx-client/third_party/snappy/snappy_unittest.cc +170 -666
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/.github/ISSUE_TEMPLATE/bug_report.md +32 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/.github/workflows/build-and-test.yml +38 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/.github/workflows/pylint.yml +26 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/.github/workflows/test_bindings.yml +24 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/.travis-libcxx-setup.sh +28 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/.travis.yml +231 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/.ycm_extra_conf.py +115 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/AUTHORS +58 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/BUILD.bazel +44 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/CMakeLists.txt +287 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/CONTRIBUTING.md +58 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/CONTRIBUTORS +83 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/LICENSE +202 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/README.md +1323 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/WORKSPACE +51 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/_config.yml +1 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/appveyor.yml +50 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/bindings/python/BUILD +3 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/bindings/python/build_defs.bzl +25 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/bindings/python/google_benchmark/BUILD +38 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/bindings/python/google_benchmark/__init__.py +156 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/bindings/python/google_benchmark/benchmark.cc +180 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/bindings/python/google_benchmark/example.py +136 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/bindings/python/pybind11.BUILD +20 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/bindings/python/python_headers.BUILD +6 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/bindings/python/requirements.txt +2 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/cmake/AddCXXCompilerFlag.cmake +74 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/cmake/CXXFeatureCheck.cmake +69 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/cmake/Config.cmake.in +1 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/cmake/GetGitVersion.cmake +54 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/cmake/GoogleTest.cmake +41 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/cmake/GoogleTest.cmake.in +58 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/cmake/benchmark.pc.in +12 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/cmake/gnu_posix_regex.cpp +12 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/cmake/llvm-toolchain.cmake +8 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/cmake/posix_regex.cpp +14 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/cmake/split_list.cmake +3 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/cmake/std_regex.cpp +10 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/cmake/steady_clock.cpp +7 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/cmake/thread_safety_attributes.cpp +4 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/conan/CMakeLists.txt +7 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/conan/test_package/CMakeLists.txt +10 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/conan/test_package/conanfile.py +19 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/conan/test_package/test_package.cpp +18 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/conanfile.py +79 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/dependencies.md +18 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/docs/AssemblyTests.md +147 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/docs/_config.yml +1 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/docs/releasing.md +16 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/docs/tools.md +203 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/include/benchmark/benchmark.h +1604 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/requirements.txt +2 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/setup.py +140 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/CMakeLists.txt +114 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/arraysize.h +33 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/benchmark.cc +499 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/benchmark_api_internal.cc +15 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/benchmark_api_internal.h +53 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/benchmark_main.cc +17 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/benchmark_name.cc +58 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/benchmark_register.cc +515 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/benchmark_register.h +108 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/benchmark_runner.cc +362 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/benchmark_runner.h +51 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/check.h +82 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/colorprint.cc +188 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/colorprint.h +33 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/commandlineflags.cc +228 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/commandlineflags.h +103 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/complexity.cc +238 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/complexity.h +55 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/console_reporter.cc +177 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/counter.cc +80 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/counter.h +32 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/csv_reporter.cc +154 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/cycleclock.h +211 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/internal_macros.h +102 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/json_reporter.cc +255 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/log.h +74 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/mutex.h +155 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/re.h +158 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/reporter.cc +105 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/sleep.cc +67 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/sleep.h +15 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/statistics.cc +193 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/statistics.h +37 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/string_util.cc +255 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/string_util.h +59 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/sysinfo.cc +716 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/thread_manager.h +64 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/thread_timer.h +86 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/timers.cc +245 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/src/timers.h +48 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/AssemblyTests.cmake +46 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/BUILD +73 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/CMakeLists.txt +263 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/args_product_test.cc +77 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/basic_test.cc +136 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/benchmark_gtest.cc +134 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/benchmark_name_gtest.cc +74 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/benchmark_test.cc +245 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/clobber_memory_assembly_test.cc +64 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/commandlineflags_gtest.cc +201 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/complexity_test.cc +213 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/cxx03_test.cc +63 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/diagnostics_test.cc +80 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/display_aggregates_only_test.cc +43 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/donotoptimize_assembly_test.cc +163 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/donotoptimize_test.cc +52 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/filter_test.cc +104 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/fixture_test.cc +51 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/internal_threading_test.cc +184 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/link_main_test.cc +8 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/map_test.cc +57 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/memory_manager_test.cc +44 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/multiple_ranges_test.cc +96 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/options_test.cc +75 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/output_test.h +213 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/output_test_helper.cc +515 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/register_benchmark_test.cc +184 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/report_aggregates_only_test.cc +39 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/reporter_output_test.cc +747 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/skip_with_error_test.cc +195 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/state_assembly_test.cc +68 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/statistics_gtest.cc +28 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/string_util_gtest.cc +153 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/templated_fixture_test.cc +28 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/user_counters_tabular_test.cc +285 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/user_counters_test.cc +531 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/test/user_counters_thousands_test.cc +173 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/tools/BUILD.bazel +19 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/tools/compare.py +429 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/tools/gbench/Inputs/test1_run1.json +119 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/tools/gbench/Inputs/test1_run2.json +119 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/tools/gbench/Inputs/test2_run.json +81 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/tools/gbench/Inputs/test3_run0.json +65 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/tools/gbench/Inputs/test3_run1.json +65 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/tools/gbench/__init__.py +8 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/tools/gbench/report.py +903 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/tools/gbench/util.py +163 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/tools/requirements.txt +1 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/benchmark/tools/strip_asm.py +151 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/.travis.yml +65 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/BUILD.bazel +182 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/CMakeLists.txt +32 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/CONTRIBUTING.md +142 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/LICENSE +28 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/README.md +135 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/WORKSPACE +30 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/appveyor.yml +156 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/ci/build-linux-bazel.sh +36 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/ci/build-platformio.sh +2 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/ci/env-linux.sh +41 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/ci/env-osx.sh +41 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/ci/get-nprocessors.sh +48 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/ci/install-linux.sh +49 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/ci/install-osx.sh +39 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/ci/install-platformio.sh +5 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/ci/log-config.sh +47 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/ci/travis.sh +29 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/CMakeLists.txt +219 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/CONTRIBUTORS +40 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/LICENSE +28 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/README.md +44 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/cmake/gmock.pc.in +10 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/cmake/gmock_main.pc.in +10 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/docs/cheat_sheet.md +786 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/docs/community_created_documentation.md +9 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/docs/cook_book.md +4276 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/docs/for_dummies.md +702 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/docs/gmock_faq.md +398 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/docs/pump_manual.md +189 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/include/gmock/gmock-actions.h +1688 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/include/gmock/gmock-cardinalities.h +157 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/include/gmock/gmock-function-mocker.h +479 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/include/gmock/gmock-generated-actions.h +577 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/include/gmock/gmock-generated-actions.h.pump +390 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/include/gmock/gmock-matchers.h +5394 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/include/gmock/gmock-more-matchers.h +92 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/include/gmock/gmock-nice-strict.h +230 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/include/gmock/gmock-spec-builders.h +2030 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/include/gmock/gmock.h +98 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/include/gmock/internal/custom/README.md +16 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/include/gmock/internal/custom/gmock-generated-actions.h +10 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/include/gmock/internal/custom/gmock-generated-actions.h.pump +12 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/include/gmock/internal/custom/gmock-matchers.h +36 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/include/gmock/internal/custom/gmock-port.h +39 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/include/gmock/internal/gmock-internal-utils.h +459 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/include/gmock/internal/gmock-port.h +87 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/include/gmock/internal/gmock-pp.h +279 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/scripts/README.md +5 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/scripts/fuse_gmock_files.py +257 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/scripts/generator/LICENSE +203 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/scripts/generator/README +34 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/scripts/generator/README.cppclean +115 -0
- package/deps/couchbase-cxx-client/{core/CMakeLists.txt → third_party/snappy/third_party/googletest/googlemock/scripts/generator/cpp/__init__.py} +0 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/scripts/generator/cpp/ast.py +1772 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/scripts/generator/cpp/gmock_class.py +245 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/scripts/generator/cpp/gmock_class_test.py +552 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/scripts/generator/cpp/keywords.py +56 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/scripts/generator/cpp/tokenize.py +284 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/scripts/generator/cpp/utils.py +37 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/scripts/generator/gmock_gen.py +30 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/scripts/pump.py +856 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/src/gmock-all.cc +46 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/src/gmock-cardinalities.cc +155 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/src/gmock-internal-utils.cc +200 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/src/gmock-matchers.cc +459 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/src/gmock-spec-builders.cc +908 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/src/gmock.cc +213 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/src/gmock_main.cc +72 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/BUILD.bazel +111 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock-actions_test.cc +1583 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock-cardinalities_test.cc +429 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock-function-mocker_nc.cc +16 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock-function-mocker_nc_test.py +43 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock-function-mocker_test.cc +974 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock-generated-actions_test.cc +1036 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock-internal-utils_test.cc +720 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock-matchers_test.cc +8562 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock-more-actions_test.cc +725 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock-nice-strict_test.cc +500 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock-port_test.cc +42 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock-pp-string_test.cc +206 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock-pp_test.cc +83 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock-spec-builders_test.cc +2775 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock_all_test.cc +47 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock_ex_test.cc +80 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock_leak_test.py +104 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock_leak_test_.cc +99 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock_link2_test.cc +39 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock_link_test.cc +39 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock_link_test.h +690 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock_output_test.py +183 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock_output_test_.cc +309 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock_output_test_golden.txt +317 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock_stress_test.cc +240 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock_test.cc +181 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/gmock_test_utils.py +108 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googlemock/test/pump_test.py +182 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/CMakeLists.txt +320 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/CONTRIBUTORS +38 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/LICENSE +28 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/README.md +262 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/cmake/Config.cmake.in +9 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/cmake/gtest.pc.in +9 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/cmake/gtest_main.pc.in +10 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/cmake/internal_utils.cmake +341 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/cmake/libgtest.la.in +21 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/docs/advanced.md +2640 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/docs/faq.md +771 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/docs/pkgconfig.md +150 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/docs/primer.md +583 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/docs/samples.md +22 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/gtest-death-test.h +342 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/gtest-matchers.h +756 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/gtest-message.h +219 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/gtest-param-test.h +512 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/gtest-printers.h +903 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/gtest-spi.h +238 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/gtest-test-part.h +184 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/gtest-typed-test.h +337 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/gtest.h +2491 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/gtest_pred_impl.h +359 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/gtest_prod.h +61 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/internal/custom/README.md +56 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/internal/custom/gtest-port.h +37 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/internal/custom/gtest-printers.h +42 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/internal/custom/gtest.h +37 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/internal/gtest-death-test-internal.h +304 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/internal/gtest-filepath.h +211 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/internal/gtest-internal.h +1564 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/internal/gtest-param-util.h +947 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/internal/gtest-port-arch.h +112 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/internal/gtest-port.h +2371 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/internal/gtest-string.h +175 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/include/gtest/internal/gtest-type-util.h +187 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/samples/prime_tables.h +126 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/samples/sample1.cc +66 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/samples/sample1.h +41 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/samples/sample10_unittest.cc +139 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/samples/sample1_unittest.cc +151 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/samples/sample2.cc +54 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/samples/sample2.h +81 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/samples/sample2_unittest.cc +107 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/samples/sample3-inl.h +172 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/samples/sample3_unittest.cc +149 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/samples/sample4.cc +54 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/samples/sample4.h +53 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/samples/sample4_unittest.cc +53 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/samples/sample5_unittest.cc +196 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/samples/sample6_unittest.cc +224 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/samples/sample7_unittest.cc +117 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/samples/sample8_unittest.cc +154 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/samples/sample9_unittest.cc +156 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/scripts/README.md +5 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/scripts/common.py +83 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/scripts/fuse_gtest_files.py +253 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/scripts/gen_gtest_pred_impl.py +733 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/scripts/gtest-config.in +274 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/scripts/release_docs.py +158 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/scripts/run_with_path.py +32 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/scripts/upload.py +1402 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/scripts/upload_gtest.py +78 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/src/gtest-all.cc +48 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/src/gtest-death-test.cc +1644 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/src/gtest-filepath.cc +368 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/src/gtest-internal-inl.h +1228 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/src/gtest-matchers.cc +97 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/src/gtest-port.cc +1404 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/src/gtest-printers.cc +444 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/src/gtest-test-part.cc +108 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/src/gtest-typed-test.cc +111 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/src/gtest.cc +6606 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/src/gtest_main.cc +54 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/BUILD.bazel +562 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-break-on-failure-unittest.py +208 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-break-on-failure-unittest_.cc +86 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-catch-exceptions-test.py +236 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-catch-exceptions-test_.cc +293 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-color-test.py +127 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-color-test_.cc +62 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-death-test-test.cc +1542 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-death-test_ex_test.cc +92 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-env-var-test.py +120 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-env-var-test_.cc +132 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-failfast-unittest.py +410 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-failfast-unittest_.cc +167 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-filepath-test.cc +649 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-filter-unittest.py +639 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-filter-unittest_.cc +137 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-json-outfiles-test.py +191 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-json-output-unittest.py +804 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-list-tests-unittest.py +205 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-list-tests-unittest_.cc +156 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-listener-test.cc +518 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-message-test.cc +158 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-options-test.cc +216 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-output-test-golden-lin.txt +1180 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-output-test.py +346 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-output-test_.cc +1126 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-param-test-invalid-name1-test.py +63 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-param-test-invalid-name1-test_.cc +50 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-param-test-invalid-name2-test.py +62 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-param-test-invalid-name2-test_.cc +55 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-param-test-test.cc +1119 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-param-test-test.h +51 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-param-test2-test.cc +61 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-port-test.cc +1280 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-printers-test.cc +1847 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-setuptestsuite-test.py +54 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-setuptestsuite-test_.cc +49 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-shuffle-test.py +323 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-shuffle-test_.cc +101 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-test-part-test.cc +230 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-throw-on-failure-test.py +168 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-throw-on-failure-test_.cc +71 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-uninitialized-test.py +67 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/googletest-uninitialized-test_.cc +42 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest-typed-test2_test.cc +44 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest-typed-test_test.cc +462 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest-typed-test_test.h +65 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest-unittest-api_test.cc +341 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_all_test.cc +46 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_assert_by_exception_test.cc +116 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_environment_test.cc +188 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_help_test.py +171 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_help_test_.cc +45 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_json_test_utils.py +60 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_list_output_unittest.py +286 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_list_output_unittest_.cc +81 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_main_unittest.cc +44 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_no_test_unittest.cc +54 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_pred_impl_unittest.cc +2422 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_premature_exit_test.cc +126 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_prod_test.cc +56 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_repeat_test.cc +233 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_skip_check_output_test.py +59 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_skip_environment_check_output_test.py +54 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_skip_in_environment_setup_test.cc +49 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_skip_test.cc +55 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_sole_header_test.cc +56 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_stress_test.cc +248 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_test_macro_stack_footprint_test.cc +89 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_test_utils.py +312 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_testbridge_test.py +63 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_testbridge_test_.cc +43 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_throw_on_failure_ex_test.cc +90 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_unittest.cc +7792 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_xml_outfile1_test_.cc +43 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_xml_outfile2_test_.cc +43 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_xml_outfiles_test.py +135 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_xml_output_unittest.py +405 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_xml_output_unittest_.cc +197 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/gtest_xml_test_utils.py +197 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/production.cc +35 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/googletest/test/production.h +54 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/library.json +62 -0
- package/deps/couchbase-cxx-client/third_party/snappy/third_party/googletest/platformio.ini +47 -0
- package/deps/couchbase-cxx-client/tools/CMakeLists.txt +2 -0
- package/deps/couchbase-cxx-client/tools/analytics.cxx +375 -0
- package/deps/couchbase-cxx-client/tools/analytics.hxx +26 -0
- package/deps/couchbase-cxx-client/tools/cbc.cxx +11 -4
- package/deps/couchbase-cxx-client/tools/command_registry.cxx +4 -0
- package/deps/couchbase-cxx-client/tools/get.cxx +36 -39
- package/deps/couchbase-cxx-client/tools/get.hxx +1 -1
- package/deps/couchbase-cxx-client/tools/pillowfight.cxx +496 -0
- package/deps/couchbase-cxx-client/tools/pillowfight.hxx +26 -0
- package/deps/couchbase-cxx-client/tools/query.cxx +97 -101
- package/deps/couchbase-cxx-client/tools/query.hxx +1 -1
- package/deps/couchbase-cxx-client/tools/utils.cxx +15 -1
- package/deps/couchbase-cxx-client/tools/utils.hxx +3 -0
- package/deps/couchbase-cxx-client/tools/version.cxx +4 -2
- package/deps/couchbase-cxx-client/tools/version.hxx +1 -1
- package/dist/authenticators.d.ts +1 -1
- package/dist/binding.d.ts +25 -10
- package/dist/bindingutilities.d.ts +6 -2
- package/dist/bindingutilities.js +39 -7
- package/dist/cluster.d.ts +27 -0
- package/dist/cluster.js +88 -56
- package/dist/collection.js +6 -6
- package/dist/configProfile.js +16 -10
- package/dist/couchbase.d.ts +1 -0
- package/dist/couchbase.js +2 -1
- package/dist/errors.d.ts +2 -2
- package/dist/errors.js +4 -4
- package/dist/scope.js +6 -6
- package/dist/sdspecs.js +11 -11
- package/dist/searchquery.d.ts +1 -1
- package/dist/streamablepromises.d.ts +1 -1
- package/dist/transactions.js +5 -1
- package/dist/usermanager.js +9 -9
- package/dist/viewindexmanager.js +8 -8
- package/package.json +1 -1
- package/src/binding.cpp +2 -0
- package/src/jstocbpp_autogen.hpp +3 -6
- package/src/jstocbpp_basic.hpp +8 -2
- package/src/jstocbpp_errors.hpp +35 -0
- package/src/jstocbpp_transactions.hpp +61 -9
- package/src/transaction.cpp +1 -1
- package/deps/couchbase-cxx-client/core/config_profile.cxx +0 -25
- package/deps/couchbase-cxx-client/core/topology/error_map_fmt.hxx +0 -94
- package/deps/couchbase-cxx-client/test/test_transaction_transaction_context.cxx +0 -550
- package/deps/couchbase-cxx-client/test/test_transaction_transaction_public_async_api.cxx +0 -392
- package/deps/couchbase-cxx-client/test/test_transaction_transaction_public_blocking_api.cxx +0 -643
- package/deps/couchbase-cxx-client/test/test_transaction_transaction_simple.cxx +0 -899
- package/deps/couchbase-cxx-client/test/test_transaction_transaction_simple_async.cxx +0 -972
- package/deps/couchbase-cxx-client/test/tools/CMakeLists.txt +0 -10
- package/deps/couchbase-cxx-client/test/tools/tool_kv_loader.cxx +0 -349
- package/deps/couchbase-cxx-client/test/utils/uniq_id.cxx +0 -29
- package/deps/couchbase-cxx-client/test/utils/uniq_id.hxx +0 -26
- package/deps/couchbase-cxx-client/third_party/catch2/.travis.yml +0 -335
- package/deps/couchbase-cxx-client/third_party/catch2/CMake/MiscFunctions.cmake +0 -26
- package/deps/couchbase-cxx-client/third_party/catch2/WORKSPACE +0 -0
- package/deps/couchbase-cxx-client/third_party/catch2/contrib/Catch.cmake +0 -206
- package/deps/couchbase-cxx-client/third_party/catch2/contrib/CatchAddTests.cmake +0 -135
- package/deps/couchbase-cxx-client/third_party/catch2/docs/slow-compiles.md +0 -106
- package/deps/couchbase-cxx-client/third_party/catch2/examples/000-CatchMain.cpp +0 -15
- package/deps/couchbase-cxx-client/third_party/catch2/examples/200-Rpt-CatchMain.cpp +0 -27
- package/deps/couchbase-cxx-client/third_party/catch2/examples/207-Rpt-TeamCityReporter.cpp +0 -171
- package/deps/couchbase-cxx-client/third_party/catch2/include/catch.hpp +0 -496
- package/deps/couchbase-cxx-client/third_party/catch2/include/catch_with_main.hpp +0 -14
- package/deps/couchbase-cxx-client/third_party/catch2/include/external/clara.hpp +0 -1268
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/benchmark/catch_benchmark.hpp +0 -122
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/benchmark/catch_benchmarking_all.hpp +0 -29
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/benchmark/catch_chronometer.hpp +0 -71
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/benchmark/catch_clock.hpp +0 -40
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/benchmark/catch_constructor.hpp +0 -79
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/benchmark/catch_environment.hpp +0 -38
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/benchmark/catch_estimate.hpp +0 -31
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/benchmark/catch_execution_plan.hpp +0 -59
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/benchmark/catch_optimizer.hpp +0 -68
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/benchmark/catch_outlier_classification.hpp +0 -29
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/benchmark/catch_sample_analysis.hpp +0 -50
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/benchmark/detail/catch_analyse.hpp +0 -78
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/benchmark/detail/catch_benchmark_function.hpp +0 -105
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/benchmark/detail/catch_complete_invoke.hpp +0 -68
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/benchmark/detail/catch_estimate_clock.hpp +0 -115
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/benchmark/detail/catch_measure.hpp +0 -35
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/benchmark/detail/catch_repeat.hpp +0 -37
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/benchmark/detail/catch_run_for_at_least.hpp +0 -65
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/benchmark/detail/catch_stats.cpp +0 -224
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/benchmark/detail/catch_stats.hpp +0 -160
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/benchmark/detail/catch_timing.hpp +0 -33
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_approx.cpp +0 -88
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_approx.h +0 -132
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_assertionhandler.cpp +0 -122
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_assertionhandler.h +0 -88
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_assertioninfo.h +0 -31
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_assertionresult.cpp +0 -104
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_assertionresult.h +0 -59
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_capture.hpp +0 -159
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_capture_matchers.cpp +0 -24
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_capture_matchers.h +0 -88
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_clara.h +0 -38
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_commandline.cpp +0 -230
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_commandline.h +0 -20
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_common.cpp +0 -43
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_common.h +0 -92
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_compiler_capabilities.h +0 -377
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_config.cpp +0 -86
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_config.hpp +0 -133
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_config_uncaught_exceptions.hpp +0 -44
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_console_colour.cpp +0 -243
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_console_colour.h +0 -69
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_context.cpp +0 -70
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_context.h +0 -64
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_debug_console.cpp +0 -41
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_debug_console.h +0 -17
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_debugger.cpp +0 -122
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_debugger.h +0 -65
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_decomposer.cpp +0 -24
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_decomposer.h +0 -259
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_default_main.hpp +0 -47
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_enforce.cpp +0 -40
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_enforce.h +0 -53
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_enum_values_registry.cpp +0 -75
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_enum_values_registry.h +0 -35
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_errno_guard.cpp +0 -15
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_errno_guard.h +0 -22
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_exception_translator_registry.cpp +0 -89
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_exception_translator_registry.h +0 -30
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_external_interfaces.h +0 -20
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_fatal_condition.cpp +0 -244
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_fatal_condition.h +0 -68
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_generators.cpp +0 -32
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_generators.hpp +0 -219
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_generators_generic.hpp +0 -237
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_generators_specific.hpp +0 -175
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_impl.hpp +0 -33
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_interfaces_capture.cpp +0 -5
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_interfaces_capture.h +0 -100
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_interfaces_config.cpp +0 -5
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_interfaces_config.h +0 -92
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_interfaces_enum_values_registry.h +0 -46
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_interfaces_exception.cpp +0 -6
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_interfaces_exception.h +0 -88
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_interfaces_generatortracker.h +0 -39
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_interfaces_registry_hub.cpp +0 -6
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_interfaces_registry_hub.h +0 -61
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_interfaces_reporter.cpp +0 -114
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_interfaces_reporter.h +0 -272
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_interfaces_runner.cpp +0 -5
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_interfaces_runner.h +0 -19
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_interfaces_tag_alias_registry.h +0 -28
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_interfaces_testcase.cpp +0 -6
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_interfaces_testcase.h +0 -38
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_leak_detector.cpp +0 -37
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_leak_detector.h +0 -18
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_list.cpp +0 -173
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_list.h +0 -38
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_matchers.cpp +0 -28
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_matchers.h +0 -174
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_matchers_exception.cpp +0 -30
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_matchers_exception.hpp +0 -36
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_matchers_floating.cpp +0 -237
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_matchers_floating.h +0 -70
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_matchers_generic.cpp +0 -9
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_matchers_generic.hpp +0 -58
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_matchers_string.cpp +0 -118
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_matchers_string.h +0 -80
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_matchers_vector.h +0 -180
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_message.cpp +0 -142
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_message.h +0 -99
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_meta.hpp +0 -50
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_objc.hpp +0 -215
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_objc_arc.hpp +0 -51
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_option.hpp +0 -73
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_output_redirect.cpp +0 -147
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_output_redirect.h +0 -116
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_platform.h +0 -30
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_polyfills.cpp +0 -31
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_polyfills.hpp +0 -15
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_preprocessor.hpp +0 -237
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_random_number_generator.cpp +0 -73
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_random_number_generator.h +0 -58
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_reenable_warnings.h +0 -21
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_registry_hub.cpp +0 -99
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_reporter_registrars.hpp +0 -78
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_reporter_registry.cpp +0 -34
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_reporter_registry.h +0 -37
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_result_type.cpp +0 -27
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_result_type.h +0 -55
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_run_context.cpp +0 -595
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_run_context.h +0 -159
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_section.cpp +0 -38
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_section.h +0 -51
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_section_info.cpp +0 -19
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_section_info.h +0 -42
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_session.cpp +0 -313
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_session.h +0 -62
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_singletons.cpp +0 -36
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_singletons.hpp +0 -44
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_startup_exception_registry.cpp +0 -28
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_startup_exception_registry.h +0 -29
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_stream.cpp +0 -187
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_stream.h +0 -51
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_string_manip.cpp +0 -109
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_string_manip.h +0 -45
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_stringref.cpp +0 -50
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_stringref.h +0 -104
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_suppress_warnings.h +0 -27
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_tag_alias.cpp +0 -5
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_tag_alias.h +0 -26
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_tag_alias_autoregistrar.cpp +0 -16
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_tag_alias_autoregistrar.h +0 -26
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_tag_alias_registry.cpp +0 -58
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_tag_alias_registry.h +0 -31
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_test_case_info.cpp +0 -186
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_test_case_info.h +0 -90
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_test_case_registry_impl.cpp +0 -176
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_test_case_registry_impl.h +0 -71
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_test_case_tracker.cpp +0 -254
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_test_case_tracker.h +0 -180
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_test_registry.cpp +0 -37
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_test_registry.h +0 -402
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_test_spec.cpp +0 -99
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_test_spec.h +0 -94
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_test_spec_parser.cpp +0 -240
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_test_spec_parser.h +0 -79
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_text.h +0 -17
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_timer.cpp +0 -74
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_timer.h +0 -30
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_to_string.hpp +0 -28
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_tostring.cpp +0 -265
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_tostring.h +0 -675
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_totals.cpp +0 -61
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_totals.h +0 -41
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_uncaught_exceptions.cpp +0 -25
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_uncaught_exceptions.h +0 -15
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_user_interfaces.h +0 -18
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_version.cpp +0 -44
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_version.h +0 -39
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_wildcard_pattern.cpp +0 -47
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_wildcard_pattern.h +0 -38
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_windows_h_proxy.h +0 -39
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_xmlwriter.cpp +0 -334
- package/deps/couchbase-cxx-client/third_party/catch2/include/internal/catch_xmlwriter.h +0 -116
- package/deps/couchbase-cxx-client/third_party/catch2/include/reporters/catch_reporter_automake.hpp +0 -62
- package/deps/couchbase-cxx-client/third_party/catch2/include/reporters/catch_reporter_bases.cpp +0 -84
- package/deps/couchbase-cxx-client/third_party/catch2/include/reporters/catch_reporter_bases.hpp +0 -285
- package/deps/couchbase-cxx-client/third_party/catch2/include/reporters/catch_reporter_compact.cpp +0 -290
- package/deps/couchbase-cxx-client/third_party/catch2/include/reporters/catch_reporter_compact.h +0 -39
- package/deps/couchbase-cxx-client/third_party/catch2/include/reporters/catch_reporter_console.cpp +0 -700
- package/deps/couchbase-cxx-client/third_party/catch2/include/reporters/catch_reporter_console.h +0 -89
- package/deps/couchbase-cxx-client/third_party/catch2/include/reporters/catch_reporter_junit.cpp +0 -300
- package/deps/couchbase-cxx-client/third_party/catch2/include/reporters/catch_reporter_junit.h +0 -62
- package/deps/couchbase-cxx-client/third_party/catch2/include/reporters/catch_reporter_listening.cpp +0 -164
- package/deps/couchbase-cxx-client/third_party/catch2/include/reporters/catch_reporter_listening.h +0 -63
- package/deps/couchbase-cxx-client/third_party/catch2/include/reporters/catch_reporter_sonarqube.hpp +0 -181
- package/deps/couchbase-cxx-client/third_party/catch2/include/reporters/catch_reporter_tap.hpp +0 -254
- package/deps/couchbase-cxx-client/third_party/catch2/include/reporters/catch_reporter_teamcity.hpp +0 -219
- package/deps/couchbase-cxx-client/third_party/catch2/include/reporters/catch_reporter_xml.cpp +0 -281
- package/deps/couchbase-cxx-client/third_party/catch2/include/reporters/catch_reporter_xml.h +0 -68
- package/deps/couchbase-cxx-client/third_party/catch2/misc/appveyorBuildConfigurationScript.bat +0 -22
- package/deps/couchbase-cxx-client/third_party/catch2/misc/appveyorMergeCoverageScript.py +0 -9
- package/deps/couchbase-cxx-client/third_party/catch2/misc/appveyorTestRunScript.bat +0 -15
- package/deps/couchbase-cxx-client/third_party/catch2/misc/coverage-helper.cpp +0 -142
- package/deps/couchbase-cxx-client/third_party/catch2/misc/installOpenCppCoverage.ps1 +0 -19
- package/deps/couchbase-cxx-client/third_party/catch2/projects/CMakeLists.txt +0 -492
- package/deps/couchbase-cxx-client/third_party/catch2/projects/ExtraTests/CMakeLists.txt +0 -201
- package/deps/couchbase-cxx-client/third_party/catch2/projects/ExtraTests/ToDo.txt +0 -11
- package/deps/couchbase-cxx-client/third_party/catch2/projects/ExtraTests/X01-PrefixedMacros.cpp +0 -84
- package/deps/couchbase-cxx-client/third_party/catch2/projects/ExtraTests/X02-DisabledMacros.cpp +0 -31
- package/deps/couchbase-cxx-client/third_party/catch2/projects/ExtraTests/X03-DisabledExceptions-DefaultHandler.cpp +0 -23
- package/deps/couchbase-cxx-client/third_party/catch2/projects/ExtraTests/X04-DisabledExceptions-CustomHandler.cpp +0 -33
- package/deps/couchbase-cxx-client/third_party/catch2/projects/ExtraTests/X10-FallbackStringifier.cpp +0 -23
- package/deps/couchbase-cxx-client/third_party/catch2/projects/ExtraTests/X11-DisableStringification.cpp +0 -16
- package/deps/couchbase-cxx-client/third_party/catch2/projects/ExtraTests/X12-CustomDebugBreakMacro.cpp +0 -17
- package/deps/couchbase-cxx-client/third_party/catch2/projects/ExtraTests/X20-BenchmarkingMacros.cpp +0 -125
- package/deps/couchbase-cxx-client/third_party/catch2/projects/ExtraTests/X90-WindowsHeaderInclusion.cpp +0 -12
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/Baselines/compact.sw.approved.txt +0 -1903
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/Baselines/console.std.approved.txt +0 -1425
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/Baselines/console.sw.approved.txt +0 -14183
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/Baselines/console.swa4.approved.txt +0 -936
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/Baselines/junit.sw.approved.txt +0 -1773
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/Baselines/sonarqube.sw.approved.txt +0 -1777
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/Baselines/xml.sw.approved.txt +0 -16767
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/CompileTimePerfTests/10.tests.cpp +0 -13
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/CompileTimePerfTests/100.tests.cpp +0 -13
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/CompileTimePerfTests/All.tests.cpp +0 -15
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/IntrospectiveTests/CmdLine.tests.cpp +0 -582
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/IntrospectiveTests/Details.tests.cpp +0 -23
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/IntrospectiveTests/GeneratorsImpl.tests.cpp +0 -352
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/IntrospectiveTests/InternalBenchmark.tests.cpp +0 -405
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/IntrospectiveTests/PartTracker.tests.cpp +0 -253
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/IntrospectiveTests/RandomNumberGeneration.tests.cpp +0 -45
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/IntrospectiveTests/String.tests.cpp +0 -150
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/IntrospectiveTests/StringManip.tests.cpp +0 -67
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/IntrospectiveTests/Tag.tests.cpp +0 -54
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/IntrospectiveTests/ToString.tests.cpp +0 -53
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/IntrospectiveTests/Xml.tests.cpp +0 -114
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/SurrogateCpps/catch_console_colour.cpp +0 -3
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/SurrogateCpps/catch_debugger.cpp +0 -2
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/SurrogateCpps/catch_interfaces_reporter.cpp +0 -2
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/SurrogateCpps/catch_option.cpp +0 -3
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/SurrogateCpps/catch_stream.cpp +0 -3
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/SurrogateCpps/catch_test_case_tracker.cpp +0 -2
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/SurrogateCpps/catch_test_spec.cpp +0 -3
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/SurrogateCpps/catch_xmlwriter.cpp +0 -4
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/TestMain.cpp +0 -34
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/TimingTests/Sleep.tests.cpp +0 -23
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/Approx.tests.cpp +0 -215
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/BDD.tests.cpp +0 -110
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/Benchmark.tests.cpp +0 -144
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/Class.tests.cpp +0 -137
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/Compilation.tests.cpp +0 -269
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/Condition.tests.cpp +0 -347
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/Decomposition.tests.cpp +0 -39
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/EnumToString.tests.cpp +0 -99
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/Exception.tests.cpp +0 -210
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/Generators.tests.cpp +0 -271
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/Matchers.tests.cpp +0 -676
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/Message.tests.cpp +0 -269
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/Misc.tests.cpp +0 -493
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/ToStringByte.tests.cpp +0 -15
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/ToStringChrono.tests.cpp +0 -44
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/ToStringGeneral.tests.cpp +0 -210
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/ToStringOptional.tests.cpp +0 -23
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/ToStringPair.tests.cpp +0 -30
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/ToStringTuple.tests.cpp +0 -47
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/ToStringVariant.tests.cpp +0 -91
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/ToStringVector.tests.cpp +0 -86
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/ToStringWhich.tests.cpp +0 -193
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/Tricky.tests.cpp +0 -429
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/UsageTests/VariadicMacros.tests.cpp +0 -29
- package/deps/couchbase-cxx-client/third_party/catch2/projects/SelfTest/WarnAboutNoTests.cmake +0 -19
- package/deps/couchbase-cxx-client/third_party/catch2/projects/TestScripts/testRandomOrder.py +0 -59
- package/deps/couchbase-cxx-client/third_party/catch2/projects/XCode/OCTest/OCTest/CatchOCTestCase.h +0 -25
- package/deps/couchbase-cxx-client/third_party/catch2/projects/XCode/OCTest/OCTest/CatchOCTestCase.mm +0 -87
- package/deps/couchbase-cxx-client/third_party/catch2/projects/XCode/OCTest/OCTest/Main.mm +0 -2
- package/deps/couchbase-cxx-client/third_party/catch2/projects/XCode/OCTest/OCTest/OCTest.1 +0 -79
- package/deps/couchbase-cxx-client/third_party/catch2/projects/XCode/OCTest/OCTest/OCTest.mm +0 -28
- package/deps/couchbase-cxx-client/third_party/catch2/projects/XCode/OCTest/OCTest/TestObj.h +0 -28
- package/deps/couchbase-cxx-client/third_party/catch2/projects/XCode/OCTest/OCTest/TestObj.m +0 -25
- package/deps/couchbase-cxx-client/third_party/catch2/projects/XCode/OCTest/OCTest.xcodeproj/project.pbxproj +0 -294
- package/deps/couchbase-cxx-client/third_party/catch2/projects/XCode/OCTest/OCTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata +0 -7
- package/deps/couchbase-cxx-client/third_party/catch2/projects/XCode/OCTest/OCTest.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +0 -8
- package/deps/couchbase-cxx-client/third_party/catch2/projects/XCode/OCTest/catch_objc_impl.mm +0 -69
- package/deps/couchbase-cxx-client/third_party/catch2/scripts/approvalTests.py +0 -217
- package/deps/couchbase-cxx-client/third_party/catch2/scripts/approve.py +0 -33
- package/deps/couchbase-cxx-client/third_party/catch2/scripts/benchmarkCompile.py +0 -148
- package/deps/couchbase-cxx-client/third_party/catch2/scripts/benchmarkRunner.py +0 -56
- package/deps/couchbase-cxx-client/third_party/catch2/scripts/developBuild.py +0 -10
- package/deps/couchbase-cxx-client/third_party/catch2/scripts/embed.py +0 -63
- package/deps/couchbase-cxx-client/third_party/catch2/scripts/embedClara.py +0 -27
- package/deps/couchbase-cxx-client/third_party/catch2/scripts/extractFeaturesFromReleaseNotes.py +0 -94
- package/deps/couchbase-cxx-client/third_party/catch2/scripts/fixWhitespace.py +0 -52
- package/deps/couchbase-cxx-client/third_party/catch2/scripts/generateSingleHeader.py +0 -151
- package/deps/couchbase-cxx-client/third_party/catch2/scripts/majorRelease.py +0 -10
- package/deps/couchbase-cxx-client/third_party/catch2/scripts/minorRelease.py +0 -10
- package/deps/couchbase-cxx-client/third_party/catch2/scripts/patchRelease.py +0 -10
- package/deps/couchbase-cxx-client/third_party/catch2/scripts/releaseCommon.py +0 -168
- package/deps/couchbase-cxx-client/third_party/catch2/scripts/releaseNotes.py +0 -65
- package/deps/couchbase-cxx-client/third_party/catch2/scripts/scriptCommon.py +0 -31
- package/deps/couchbase-cxx-client/third_party/catch2/scripts/updateDocumentToC.py +0 -449
- package/deps/couchbase-cxx-client/third_party/catch2/scripts/updateWandbox.py +0 -53
- package/deps/couchbase-cxx-client/third_party/catch2/single_include/catch2/catch.hpp +0 -17959
- package/deps/couchbase-cxx-client/third_party/catch2/single_include/catch2/catch_reporter_automake.hpp +0 -62
- package/deps/couchbase-cxx-client/third_party/catch2/single_include/catch2/catch_reporter_sonarqube.hpp +0 -181
- package/deps/couchbase-cxx-client/third_party/catch2/single_include/catch2/catch_reporter_tap.hpp +0 -254
- package/deps/couchbase-cxx-client/third_party/catch2/single_include/catch2/catch_reporter_teamcity.hpp +0 -219
- package/deps/couchbase-cxx-client/third_party/catch2/src/catch_with_main.cpp +0 -2
- package/deps/couchbase-cxx-client/third_party/snappy/.appveyor.yml +0 -36
- package/deps/couchbase-cxx-client/third_party/snappy/.travis.yml +0 -94
- /package/deps/couchbase-cxx-client/third_party/catch2/{artwork → data/artwork}/catch2-c-logo.png +0 -0
- /package/deps/couchbase-cxx-client/third_party/catch2/{artwork → data/artwork}/catch2-hand-logo.png +0 -0
- /package/deps/couchbase-cxx-client/third_party/catch2/{artwork → data/artwork}/catch2-logo-small.png +0 -0
- /package/deps/couchbase-cxx-client/third_party/catch2/{contrib → extras}/ParseAndAddCatchTests.cmake +0 -0
- /package/deps/couchbase-cxx-client/third_party/catch2/{contrib → extras}/gdbinit +0 -0
- /package/deps/couchbase-cxx-client/third_party/catch2/{contrib → extras}/lldbinit +0 -0
- /package/deps/couchbase-cxx-client/third_party/catch2/{projects → tests}/SelfTest/Baselines/automake.std.approved.txt +0 -0
- /package/deps/couchbase-cxx-client/third_party/catch2/{projects → tests}/SelfTest/Misc/invalid-test-names.input +0 -0
- /package/deps/couchbase-cxx-client/third_party/catch2/{projects → tests}/SelfTest/Misc/plain-old-tests.input +0 -0
- /package/deps/couchbase-cxx-client/third_party/catch2/{projects → tests}/SelfTest/Misc/special-characters-in-file.input +0 -0
- /package/deps/couchbase-cxx-client/third_party/catch2/{misc → tools/misc}/CMakeLists.txt +0 -0
@@ -0,0 +1,4470 @@
|
|
1
|
+
# filters: "*" ~[!nonportable] ~[!benchmark] ~[approvals]
|
2
|
+
# rng-seed: 1
|
3
|
+
# # A test name that starts with a #
|
4
|
+
ok {test-number} - with 1 message: 'yay'
|
5
|
+
# #1027: Bitfields can be captured
|
6
|
+
ok {test-number} - y.v == 0 for: 0 == 0
|
7
|
+
# #1027: Bitfields can be captured
|
8
|
+
ok {test-number} - 0 == y.v for: 0 == 0
|
9
|
+
# #1147
|
10
|
+
ok {test-number} - t1 == t2 for: {?} == {?}
|
11
|
+
# #1147
|
12
|
+
ok {test-number} - t1 != t2 for: {?} != {?}
|
13
|
+
# #1147
|
14
|
+
ok {test-number} - t1 < t2 for: {?} < {?}
|
15
|
+
# #1147
|
16
|
+
ok {test-number} - t1 > t2 for: {?} > {?}
|
17
|
+
# #1147
|
18
|
+
ok {test-number} - t1 <= t2 for: {?} <= {?}
|
19
|
+
# #1147
|
20
|
+
ok {test-number} - t1 >= t2 for: {?} >= {?}
|
21
|
+
# #1175 - Hidden Test
|
22
|
+
ok {test-number} -
|
23
|
+
# #1238
|
24
|
+
ok {test-number} - std::memcmp(uarr, "123", sizeof(uarr)) == 0 for: 0 == 0 with 2 messages: 'uarr := "123"' and 'sarr := "456"'
|
25
|
+
# #1238
|
26
|
+
ok {test-number} - std::memcmp(sarr, "456", sizeof(sarr)) == 0 for: 0 == 0 with 2 messages: 'uarr := "123"' and 'sarr := "456"'
|
27
|
+
# #1245
|
28
|
+
ok {test-number} -
|
29
|
+
# #1319: Sections can have description (even if it is not saved
|
30
|
+
ok {test-number} -
|
31
|
+
# #1403
|
32
|
+
ok {test-number} - h1 == h2 for: [1403 helper] == [1403 helper]
|
33
|
+
# #1455 - INFO and WARN can start with a linebreak
|
34
|
+
warning {test-number} - '
|
35
|
+
This info message starts with a linebreak' with 1 message: '
|
36
|
+
This warning message starts with a linebreak'
|
37
|
+
# #1514: stderr/stdout is not captured in tests aborted by an exception
|
38
|
+
not ok {test-number} - explicitly with 1 message: '1514'
|
39
|
+
# #1548
|
40
|
+
ok {test-number} - std::is_same<TypeList<int>, TypeList<int>>::value for: true
|
41
|
+
# #1905 -- test spec parser properly clears internal state between compound tests
|
42
|
+
ok {test-number} - spec.matches(*fakeTestCase("spec . char")) for: true
|
43
|
+
# #1905 -- test spec parser properly clears internal state between compound tests
|
44
|
+
ok {test-number} - spec.matches(*fakeTestCase("spec , char")) for: true
|
45
|
+
# #1905 -- test spec parser properly clears internal state between compound tests
|
46
|
+
ok {test-number} - !(spec.matches(*fakeTestCase(R"(spec \, char)"))) for: !false
|
47
|
+
# #1912 -- test spec parser handles escaping
|
48
|
+
ok {test-number} - spec.matches(*fakeTestCase(R"(spec {a} char)")) for: true
|
49
|
+
# #1912 -- test spec parser handles escaping
|
50
|
+
ok {test-number} - spec.matches(*fakeTestCase(R"(spec [a] char)")) for: true
|
51
|
+
# #1912 -- test spec parser handles escaping
|
52
|
+
ok {test-number} - !(spec.matches(*fakeTestCase("differs but has similar tag", "[a]"))) for: !false
|
53
|
+
# #1912 -- test spec parser handles escaping
|
54
|
+
ok {test-number} - spec.matches(*fakeTestCase(R"(spec \ char)")) for: true
|
55
|
+
# #1913 - GENERATE inside a for loop should not keep recreating the generator
|
56
|
+
ok {test-number} - counter < 7 for: 3 < 7
|
57
|
+
# #1913 - GENERATE inside a for loop should not keep recreating the generator
|
58
|
+
ok {test-number} - counter < 7 for: 6 < 7
|
59
|
+
# #1913 - GENERATEs can share a line
|
60
|
+
ok {test-number} - i != j for: 1 != 3
|
61
|
+
# #1913 - GENERATEs can share a line
|
62
|
+
ok {test-number} - i != j for: 1 != 4
|
63
|
+
# #1913 - GENERATEs can share a line
|
64
|
+
ok {test-number} - i != j for: 2 != 3
|
65
|
+
# #1913 - GENERATEs can share a line
|
66
|
+
ok {test-number} - i != j for: 2 != 4
|
67
|
+
# #1938 - GENERATE after a section
|
68
|
+
ok {test-number} - with 1 message: 'A'
|
69
|
+
# #1938 - GENERATE after a section
|
70
|
+
ok {test-number} - m for: 1
|
71
|
+
# #1938 - GENERATE after a section
|
72
|
+
ok {test-number} - m for: 2
|
73
|
+
# #1938 - GENERATE after a section
|
74
|
+
ok {test-number} - m for: 3
|
75
|
+
# #1938 - Section followed by flat generate
|
76
|
+
ok {test-number} - 1
|
77
|
+
# #1938 - Section followed by flat generate
|
78
|
+
ok {test-number} - m for: 2
|
79
|
+
# #1938 - Section followed by flat generate
|
80
|
+
ok {test-number} - m for: 3
|
81
|
+
# #1938 - flat generate
|
82
|
+
ok {test-number} - m for: 1
|
83
|
+
# #1938 - flat generate
|
84
|
+
ok {test-number} - m for: 2
|
85
|
+
# #1938 - flat generate
|
86
|
+
ok {test-number} - m for: 3
|
87
|
+
# #1938 - mixed sections and generates
|
88
|
+
ok {test-number} - with 1 message: 'A'
|
89
|
+
# #1938 - mixed sections and generates
|
90
|
+
ok {test-number} - with 3 messages: 'i := 1' and 'j := 3' and 'k := 5'
|
91
|
+
# #1938 - mixed sections and generates
|
92
|
+
ok {test-number} - with 1 message: 'B'
|
93
|
+
# #1938 - mixed sections and generates
|
94
|
+
ok {test-number} - with 3 messages: 'i := 1' and 'j := 3' and 'k := 6'
|
95
|
+
# #1938 - mixed sections and generates
|
96
|
+
ok {test-number} - with 1 message: 'B'
|
97
|
+
# #1938 - mixed sections and generates
|
98
|
+
ok {test-number} - with 3 messages: 'i := 1' and 'j := 4' and 'k := 5'
|
99
|
+
# #1938 - mixed sections and generates
|
100
|
+
ok {test-number} - with 3 messages: 'i := 1' and 'j := 4' and 'k := 6'
|
101
|
+
# #1938 - mixed sections and generates
|
102
|
+
ok {test-number} - with 1 message: 'A'
|
103
|
+
# #1938 - mixed sections and generates
|
104
|
+
ok {test-number} - with 3 messages: 'i := 2' and 'j := 3' and 'k := 5'
|
105
|
+
# #1938 - mixed sections and generates
|
106
|
+
ok {test-number} - with 1 message: 'B'
|
107
|
+
# #1938 - mixed sections and generates
|
108
|
+
ok {test-number} - with 3 messages: 'i := 2' and 'j := 3' and 'k := 6'
|
109
|
+
# #1938 - mixed sections and generates
|
110
|
+
ok {test-number} - with 1 message: 'B'
|
111
|
+
# #1938 - mixed sections and generates
|
112
|
+
ok {test-number} - with 3 messages: 'i := 2' and 'j := 4' and 'k := 5'
|
113
|
+
# #1938 - mixed sections and generates
|
114
|
+
ok {test-number} - with 3 messages: 'i := 2' and 'j := 4' and 'k := 6'
|
115
|
+
# #1938 - nested generate
|
116
|
+
ok {test-number} - m for: 1
|
117
|
+
# #1938 - nested generate
|
118
|
+
ok {test-number} - n for: 1
|
119
|
+
# #1938 - nested generate
|
120
|
+
ok {test-number} - m for: 1
|
121
|
+
# #1938 - nested generate
|
122
|
+
ok {test-number} - n for: 2
|
123
|
+
# #1938 - nested generate
|
124
|
+
ok {test-number} - m for: 1
|
125
|
+
# #1938 - nested generate
|
126
|
+
ok {test-number} - n for: 3
|
127
|
+
# #1938 - nested generate
|
128
|
+
ok {test-number} - m for: 2
|
129
|
+
# #1938 - nested generate
|
130
|
+
ok {test-number} - n for: 1
|
131
|
+
# #1938 - nested generate
|
132
|
+
ok {test-number} - m for: 2
|
133
|
+
# #1938 - nested generate
|
134
|
+
ok {test-number} - n for: 2
|
135
|
+
# #1938 - nested generate
|
136
|
+
ok {test-number} - m for: 2
|
137
|
+
# #1938 - nested generate
|
138
|
+
ok {test-number} - n for: 3
|
139
|
+
# #1938 - nested generate
|
140
|
+
ok {test-number} - m for: 3
|
141
|
+
# #1938 - nested generate
|
142
|
+
ok {test-number} - n for: 1
|
143
|
+
# #1938 - nested generate
|
144
|
+
ok {test-number} - m for: 3
|
145
|
+
# #1938 - nested generate
|
146
|
+
ok {test-number} - n for: 2
|
147
|
+
# #1938 - nested generate
|
148
|
+
ok {test-number} - m for: 3
|
149
|
+
# #1938 - nested generate
|
150
|
+
ok {test-number} - n for: 3
|
151
|
+
# #1954 - 7 arg template test case sig compiles - 1, 1, 1, 1, 1, 0, 0
|
152
|
+
ok {test-number} -
|
153
|
+
# #1954 - 7 arg template test case sig compiles - 5, 1, 1, 1, 1, 0, 0
|
154
|
+
ok {test-number} -
|
155
|
+
# #1954 - 7 arg template test case sig compiles - 5, 3, 1, 1, 1, 0, 0
|
156
|
+
ok {test-number} -
|
157
|
+
# #2152 - ULP checks between differently signed values were wrong - double
|
158
|
+
ok {test-number} - smallest_non_zero, WithinULP( -smallest_non_zero, 2 ) for: 0.0 is within 2 ULPs of -4.9406564584124654e-324 ([-1.4821969375237396e-323, 4.9406564584124654e-324])
|
159
|
+
# #2152 - ULP checks between differently signed values were wrong - double
|
160
|
+
ok {test-number} - smallest_non_zero, !WithinULP( -smallest_non_zero, 1 ) for: 0.0 not is within 1 ULPs of -4.9406564584124654e-324 ([-9.8813129168249309e-324, -0.0000000000000000e+00])
|
161
|
+
# #2152 - ULP checks between differently signed values were wrong - float
|
162
|
+
ok {test-number} - smallest_non_zero, WithinULP( -smallest_non_zero, 2 ) for: 0.0f is within 2 ULPs of -1.40129846e-45f ([-4.20389539e-45, 1.40129846e-45])
|
163
|
+
# #2152 - ULP checks between differently signed values were wrong - float
|
164
|
+
ok {test-number} - smallest_non_zero, !WithinULP( -smallest_non_zero, 1 ) for: 0.0f not is within 1 ULPs of -1.40129846e-45f ([-2.80259693e-45, -0.00000000e+00])
|
165
|
+
# #2615 - Throwing in constructor generator fails test case but does not abort
|
166
|
+
not ok {test-number} - unexpected exception with message: 'failure to init'
|
167
|
+
# #748 - captures with unexpected exceptions
|
168
|
+
not ok {test-number} - unexpected exception with message: 'answer := 42' with 1 message: 'expected exception'
|
169
|
+
# #748 - captures with unexpected exceptions
|
170
|
+
not ok {test-number} - unexpected exception with message: 'answer := 42'; expression was: thisThrows() with 1 message: 'expected exception'
|
171
|
+
# #748 - captures with unexpected exceptions
|
172
|
+
ok {test-number} - thisThrows() with 1 message: 'answer := 42'
|
173
|
+
# #809
|
174
|
+
ok {test-number} - 42 == f for: 42 == {?}
|
175
|
+
# #833
|
176
|
+
ok {test-number} - a == t for: 3 == 3
|
177
|
+
# #833
|
178
|
+
ok {test-number} - a == t for: 3 == 3
|
179
|
+
# #833
|
180
|
+
ok {test-number} - throws_int(true)
|
181
|
+
# #833
|
182
|
+
ok {test-number} - throws_int(true), int
|
183
|
+
# #833
|
184
|
+
ok {test-number} - throws_int(false)
|
185
|
+
# #833
|
186
|
+
ok {test-number} - "aaa", Catch::Matchers::EndsWith("aaa") for: "aaa" ends with: "aaa"
|
187
|
+
# #833
|
188
|
+
ok {test-number} - templated_tests<int>(3) for: true
|
189
|
+
# #835 -- errno should not be touched by Catch2
|
190
|
+
not ok {test-number} - f() == 0 for: 1 == 0
|
191
|
+
# #835 -- errno should not be touched by Catch2
|
192
|
+
ok {test-number} - errno_after == 1 for: 1 == 1
|
193
|
+
# #872
|
194
|
+
ok {test-number} - x == 4 for: {?} == 4 with 1 message: 'dummy := 0'
|
195
|
+
# #961 -- Dynamically created sections should all be reported
|
196
|
+
ok {test-number} - with 1 message: 'Everything is OK'
|
197
|
+
# #961 -- Dynamically created sections should all be reported
|
198
|
+
ok {test-number} - with 1 message: 'Everything is OK'
|
199
|
+
# #961 -- Dynamically created sections should all be reported
|
200
|
+
ok {test-number} - with 1 message: 'Everything is OK'
|
201
|
+
# #961 -- Dynamically created sections should all be reported
|
202
|
+
ok {test-number} - with 1 message: 'Everything is OK'
|
203
|
+
# #961 -- Dynamically created sections should all be reported
|
204
|
+
ok {test-number} - with 1 message: 'Everything is OK'
|
205
|
+
# 'Not' checks that should fail
|
206
|
+
not ok {test-number} - false != false
|
207
|
+
# 'Not' checks that should fail
|
208
|
+
not ok {test-number} - true != true
|
209
|
+
# 'Not' checks that should fail
|
210
|
+
not ok {test-number} - !true for: false
|
211
|
+
# 'Not' checks that should fail
|
212
|
+
not ok {test-number} - !(true) for: !true
|
213
|
+
# 'Not' checks that should fail
|
214
|
+
not ok {test-number} - !trueValue for: false
|
215
|
+
# 'Not' checks that should fail
|
216
|
+
not ok {test-number} - !(trueValue) for: !true
|
217
|
+
# 'Not' checks that should fail
|
218
|
+
not ok {test-number} - !(1 == 1) for: false
|
219
|
+
# 'Not' checks that should fail
|
220
|
+
not ok {test-number} - !(1 == 1)
|
221
|
+
# 'Not' checks that should succeed
|
222
|
+
ok {test-number} - false == false
|
223
|
+
# 'Not' checks that should succeed
|
224
|
+
ok {test-number} - true == true
|
225
|
+
# 'Not' checks that should succeed
|
226
|
+
ok {test-number} - !false for: true
|
227
|
+
# 'Not' checks that should succeed
|
228
|
+
ok {test-number} - !(false) for: !false
|
229
|
+
# 'Not' checks that should succeed
|
230
|
+
ok {test-number} - !falseValue for: true
|
231
|
+
# 'Not' checks that should succeed
|
232
|
+
ok {test-number} - !(falseValue) for: !false
|
233
|
+
# 'Not' checks that should succeed
|
234
|
+
ok {test-number} - !(1 == 2) for: true
|
235
|
+
# 'Not' checks that should succeed
|
236
|
+
ok {test-number} - !(1 == 2)
|
237
|
+
# (unimplemented) static bools can be evaluated
|
238
|
+
ok {test-number} - is_true<true>::value == true for: true == true
|
239
|
+
# (unimplemented) static bools can be evaluated
|
240
|
+
ok {test-number} - true == is_true<true>::value for: true == true
|
241
|
+
# (unimplemented) static bools can be evaluated
|
242
|
+
ok {test-number} - is_true<false>::value == false for: false == false
|
243
|
+
# (unimplemented) static bools can be evaluated
|
244
|
+
ok {test-number} - false == is_true<false>::value for: false == false
|
245
|
+
# (unimplemented) static bools can be evaluated
|
246
|
+
ok {test-number} - !is_true<false>::value for: true
|
247
|
+
# (unimplemented) static bools can be evaluated
|
248
|
+
ok {test-number} - !!is_true<true>::value for: true
|
249
|
+
# (unimplemented) static bools can be evaluated
|
250
|
+
ok {test-number} - is_true<true>::value for: true
|
251
|
+
# (unimplemented) static bools can be evaluated
|
252
|
+
ok {test-number} - !(is_true<false>::value) for: !false
|
253
|
+
# 3x3x3 ints
|
254
|
+
ok {test-number} - x < y for: 1 < 4
|
255
|
+
# 3x3x3 ints
|
256
|
+
ok {test-number} - y < z for: 4 < 7
|
257
|
+
# 3x3x3 ints
|
258
|
+
ok {test-number} - x < z for: 1 < 7
|
259
|
+
# 3x3x3 ints
|
260
|
+
ok {test-number} - x < y for: 1 < 4
|
261
|
+
# 3x3x3 ints
|
262
|
+
ok {test-number} - y < z for: 4 < 8
|
263
|
+
# 3x3x3 ints
|
264
|
+
ok {test-number} - x < z for: 1 < 8
|
265
|
+
# 3x3x3 ints
|
266
|
+
ok {test-number} - x < y for: 1 < 4
|
267
|
+
# 3x3x3 ints
|
268
|
+
ok {test-number} - y < z for: 4 < 9
|
269
|
+
# 3x3x3 ints
|
270
|
+
ok {test-number} - x < z for: 1 < 9
|
271
|
+
# 3x3x3 ints
|
272
|
+
ok {test-number} - x < y for: 1 < 5
|
273
|
+
# 3x3x3 ints
|
274
|
+
ok {test-number} - y < z for: 5 < 7
|
275
|
+
# 3x3x3 ints
|
276
|
+
ok {test-number} - x < z for: 1 < 7
|
277
|
+
# 3x3x3 ints
|
278
|
+
ok {test-number} - x < y for: 1 < 5
|
279
|
+
# 3x3x3 ints
|
280
|
+
ok {test-number} - y < z for: 5 < 8
|
281
|
+
# 3x3x3 ints
|
282
|
+
ok {test-number} - x < z for: 1 < 8
|
283
|
+
# 3x3x3 ints
|
284
|
+
ok {test-number} - x < y for: 1 < 5
|
285
|
+
# 3x3x3 ints
|
286
|
+
ok {test-number} - y < z for: 5 < 9
|
287
|
+
# 3x3x3 ints
|
288
|
+
ok {test-number} - x < z for: 1 < 9
|
289
|
+
# 3x3x3 ints
|
290
|
+
ok {test-number} - x < y for: 1 < 6
|
291
|
+
# 3x3x3 ints
|
292
|
+
ok {test-number} - y < z for: 6 < 7
|
293
|
+
# 3x3x3 ints
|
294
|
+
ok {test-number} - x < z for: 1 < 7
|
295
|
+
# 3x3x3 ints
|
296
|
+
ok {test-number} - x < y for: 1 < 6
|
297
|
+
# 3x3x3 ints
|
298
|
+
ok {test-number} - y < z for: 6 < 8
|
299
|
+
# 3x3x3 ints
|
300
|
+
ok {test-number} - x < z for: 1 < 8
|
301
|
+
# 3x3x3 ints
|
302
|
+
ok {test-number} - x < y for: 1 < 6
|
303
|
+
# 3x3x3 ints
|
304
|
+
ok {test-number} - y < z for: 6 < 9
|
305
|
+
# 3x3x3 ints
|
306
|
+
ok {test-number} - x < z for: 1 < 9
|
307
|
+
# 3x3x3 ints
|
308
|
+
ok {test-number} - x < y for: 2 < 4
|
309
|
+
# 3x3x3 ints
|
310
|
+
ok {test-number} - y < z for: 4 < 7
|
311
|
+
# 3x3x3 ints
|
312
|
+
ok {test-number} - x < z for: 2 < 7
|
313
|
+
# 3x3x3 ints
|
314
|
+
ok {test-number} - x < y for: 2 < 4
|
315
|
+
# 3x3x3 ints
|
316
|
+
ok {test-number} - y < z for: 4 < 8
|
317
|
+
# 3x3x3 ints
|
318
|
+
ok {test-number} - x < z for: 2 < 8
|
319
|
+
# 3x3x3 ints
|
320
|
+
ok {test-number} - x < y for: 2 < 4
|
321
|
+
# 3x3x3 ints
|
322
|
+
ok {test-number} - y < z for: 4 < 9
|
323
|
+
# 3x3x3 ints
|
324
|
+
ok {test-number} - x < z for: 2 < 9
|
325
|
+
# 3x3x3 ints
|
326
|
+
ok {test-number} - x < y for: 2 < 5
|
327
|
+
# 3x3x3 ints
|
328
|
+
ok {test-number} - y < z for: 5 < 7
|
329
|
+
# 3x3x3 ints
|
330
|
+
ok {test-number} - x < z for: 2 < 7
|
331
|
+
# 3x3x3 ints
|
332
|
+
ok {test-number} - x < y for: 2 < 5
|
333
|
+
# 3x3x3 ints
|
334
|
+
ok {test-number} - y < z for: 5 < 8
|
335
|
+
# 3x3x3 ints
|
336
|
+
ok {test-number} - x < z for: 2 < 8
|
337
|
+
# 3x3x3 ints
|
338
|
+
ok {test-number} - x < y for: 2 < 5
|
339
|
+
# 3x3x3 ints
|
340
|
+
ok {test-number} - y < z for: 5 < 9
|
341
|
+
# 3x3x3 ints
|
342
|
+
ok {test-number} - x < z for: 2 < 9
|
343
|
+
# 3x3x3 ints
|
344
|
+
ok {test-number} - x < y for: 2 < 6
|
345
|
+
# 3x3x3 ints
|
346
|
+
ok {test-number} - y < z for: 6 < 7
|
347
|
+
# 3x3x3 ints
|
348
|
+
ok {test-number} - x < z for: 2 < 7
|
349
|
+
# 3x3x3 ints
|
350
|
+
ok {test-number} - x < y for: 2 < 6
|
351
|
+
# 3x3x3 ints
|
352
|
+
ok {test-number} - y < z for: 6 < 8
|
353
|
+
# 3x3x3 ints
|
354
|
+
ok {test-number} - x < z for: 2 < 8
|
355
|
+
# 3x3x3 ints
|
356
|
+
ok {test-number} - x < y for: 2 < 6
|
357
|
+
# 3x3x3 ints
|
358
|
+
ok {test-number} - y < z for: 6 < 9
|
359
|
+
# 3x3x3 ints
|
360
|
+
ok {test-number} - x < z for: 2 < 9
|
361
|
+
# 3x3x3 ints
|
362
|
+
ok {test-number} - x < y for: 3 < 4
|
363
|
+
# 3x3x3 ints
|
364
|
+
ok {test-number} - y < z for: 4 < 7
|
365
|
+
# 3x3x3 ints
|
366
|
+
ok {test-number} - x < z for: 3 < 7
|
367
|
+
# 3x3x3 ints
|
368
|
+
ok {test-number} - x < y for: 3 < 4
|
369
|
+
# 3x3x3 ints
|
370
|
+
ok {test-number} - y < z for: 4 < 8
|
371
|
+
# 3x3x3 ints
|
372
|
+
ok {test-number} - x < z for: 3 < 8
|
373
|
+
# 3x3x3 ints
|
374
|
+
ok {test-number} - x < y for: 3 < 4
|
375
|
+
# 3x3x3 ints
|
376
|
+
ok {test-number} - y < z for: 4 < 9
|
377
|
+
# 3x3x3 ints
|
378
|
+
ok {test-number} - x < z for: 3 < 9
|
379
|
+
# 3x3x3 ints
|
380
|
+
ok {test-number} - x < y for: 3 < 5
|
381
|
+
# 3x3x3 ints
|
382
|
+
ok {test-number} - y < z for: 5 < 7
|
383
|
+
# 3x3x3 ints
|
384
|
+
ok {test-number} - x < z for: 3 < 7
|
385
|
+
# 3x3x3 ints
|
386
|
+
ok {test-number} - x < y for: 3 < 5
|
387
|
+
# 3x3x3 ints
|
388
|
+
ok {test-number} - y < z for: 5 < 8
|
389
|
+
# 3x3x3 ints
|
390
|
+
ok {test-number} - x < z for: 3 < 8
|
391
|
+
# 3x3x3 ints
|
392
|
+
ok {test-number} - x < y for: 3 < 5
|
393
|
+
# 3x3x3 ints
|
394
|
+
ok {test-number} - y < z for: 5 < 9
|
395
|
+
# 3x3x3 ints
|
396
|
+
ok {test-number} - x < z for: 3 < 9
|
397
|
+
# 3x3x3 ints
|
398
|
+
ok {test-number} - x < y for: 3 < 6
|
399
|
+
# 3x3x3 ints
|
400
|
+
ok {test-number} - y < z for: 6 < 7
|
401
|
+
# 3x3x3 ints
|
402
|
+
ok {test-number} - x < z for: 3 < 7
|
403
|
+
# 3x3x3 ints
|
404
|
+
ok {test-number} - x < y for: 3 < 6
|
405
|
+
# 3x3x3 ints
|
406
|
+
ok {test-number} - y < z for: 6 < 8
|
407
|
+
# 3x3x3 ints
|
408
|
+
ok {test-number} - x < z for: 3 < 8
|
409
|
+
# 3x3x3 ints
|
410
|
+
ok {test-number} - x < y for: 3 < 6
|
411
|
+
# 3x3x3 ints
|
412
|
+
ok {test-number} - y < z for: 6 < 9
|
413
|
+
# 3x3x3 ints
|
414
|
+
ok {test-number} - x < z for: 3 < 9
|
415
|
+
# A METHOD_AS_TEST_CASE based test run that fails
|
416
|
+
not ok {test-number} - s == "world" for: "hello" == "world"
|
417
|
+
# A METHOD_AS_TEST_CASE based test run that succeeds
|
418
|
+
ok {test-number} - s == "hello" for: "hello" == "hello"
|
419
|
+
# A TEMPLATE_PRODUCT_TEST_CASE_METHOD based test run that fails - Template_Foo<float>
|
420
|
+
not ok {test-number} - Template_Fixture_2<TestType>::m_a.size() == 1 for: 0 == 1
|
421
|
+
# A TEMPLATE_PRODUCT_TEST_CASE_METHOD based test run that fails - Template_Foo<int>
|
422
|
+
not ok {test-number} - Template_Fixture_2<TestType>::m_a.size() == 1 for: 0 == 1
|
423
|
+
# A TEMPLATE_PRODUCT_TEST_CASE_METHOD based test run that fails - std::vector<float>
|
424
|
+
not ok {test-number} - Template_Fixture_2<TestType>::m_a.size() == 1 for: 0 == 1
|
425
|
+
# A TEMPLATE_PRODUCT_TEST_CASE_METHOD based test run that fails - std::vector<int>
|
426
|
+
not ok {test-number} - Template_Fixture_2<TestType>::m_a.size() == 1 for: 0 == 1
|
427
|
+
# A TEMPLATE_PRODUCT_TEST_CASE_METHOD based test run that succeeds - Template_Foo<float>
|
428
|
+
ok {test-number} - Template_Fixture_2<TestType>::m_a.size() == 0 for: 0 == 0
|
429
|
+
# A TEMPLATE_PRODUCT_TEST_CASE_METHOD based test run that succeeds - Template_Foo<int>
|
430
|
+
ok {test-number} - Template_Fixture_2<TestType>::m_a.size() == 0 for: 0 == 0
|
431
|
+
# A TEMPLATE_PRODUCT_TEST_CASE_METHOD based test run that succeeds - std::vector<float>
|
432
|
+
ok {test-number} - Template_Fixture_2<TestType>::m_a.size() == 0 for: 0 == 0
|
433
|
+
# A TEMPLATE_PRODUCT_TEST_CASE_METHOD based test run that succeeds - std::vector<int>
|
434
|
+
ok {test-number} - Template_Fixture_2<TestType>::m_a.size() == 0 for: 0 == 0
|
435
|
+
# A TEMPLATE_PRODUCT_TEST_CASE_METHOD_SIG based test run that fails - Template_Foo_2<float, 6>
|
436
|
+
not ok {test-number} - Template_Fixture_2<TestType>{}.m_a.size() < 2 for: 6 < 2
|
437
|
+
# A TEMPLATE_PRODUCT_TEST_CASE_METHOD_SIG based test run that fails - Template_Foo_2<int, 2>
|
438
|
+
not ok {test-number} - Template_Fixture_2<TestType>{}.m_a.size() < 2 for: 2 < 2
|
439
|
+
# A TEMPLATE_PRODUCT_TEST_CASE_METHOD_SIG based test run that fails - std::array<float, 6>
|
440
|
+
not ok {test-number} - Template_Fixture_2<TestType>{}.m_a.size() < 2 for: 6 < 2
|
441
|
+
# A TEMPLATE_PRODUCT_TEST_CASE_METHOD_SIG based test run that fails - std::array<int, 2>
|
442
|
+
not ok {test-number} - Template_Fixture_2<TestType>{}.m_a.size() < 2 for: 2 < 2
|
443
|
+
# A TEMPLATE_PRODUCT_TEST_CASE_METHOD_SIG based test run that succeeds - Template_Foo_2<float,6>
|
444
|
+
ok {test-number} - Template_Fixture_2<TestType>{}.m_a.size() >= 2 for: 6 >= 2
|
445
|
+
# A TEMPLATE_PRODUCT_TEST_CASE_METHOD_SIG based test run that succeeds - Template_Foo_2<int,2>
|
446
|
+
ok {test-number} - Template_Fixture_2<TestType>{}.m_a.size() >= 2 for: 2 >= 2
|
447
|
+
# A TEMPLATE_PRODUCT_TEST_CASE_METHOD_SIG based test run that succeeds - std::array<float,6>
|
448
|
+
ok {test-number} - Template_Fixture_2<TestType>{}.m_a.size() >= 2 for: 6 >= 2
|
449
|
+
# A TEMPLATE_PRODUCT_TEST_CASE_METHOD_SIG based test run that succeeds - std::array<int,2>
|
450
|
+
ok {test-number} - Template_Fixture_2<TestType>{}.m_a.size() >= 2 for: 2 >= 2
|
451
|
+
# A TEMPLATE_TEST_CASE_METHOD based test run that fails - double
|
452
|
+
not ok {test-number} - Template_Fixture<TestType>::m_a == 2 for: 1.0 == 2
|
453
|
+
# A TEMPLATE_TEST_CASE_METHOD based test run that fails - float
|
454
|
+
not ok {test-number} - Template_Fixture<TestType>::m_a == 2 for: 1.0f == 2
|
455
|
+
# A TEMPLATE_TEST_CASE_METHOD based test run that fails - int
|
456
|
+
not ok {test-number} - Template_Fixture<TestType>::m_a == 2 for: 1 == 2
|
457
|
+
# A TEMPLATE_TEST_CASE_METHOD based test run that succeeds - double
|
458
|
+
ok {test-number} - Template_Fixture<TestType>::m_a == 1 for: 1.0 == 1
|
459
|
+
# A TEMPLATE_TEST_CASE_METHOD based test run that succeeds - float
|
460
|
+
ok {test-number} - Template_Fixture<TestType>::m_a == 1 for: 1.0f == 1
|
461
|
+
# A TEMPLATE_TEST_CASE_METHOD based test run that succeeds - int
|
462
|
+
ok {test-number} - Template_Fixture<TestType>::m_a == 1 for: 1 == 1
|
463
|
+
# A TEMPLATE_TEST_CASE_METHOD_SIG based test run that fails - 1
|
464
|
+
not ok {test-number} - Nttp_Fixture<V>::value == 0 for: 1 == 0
|
465
|
+
# A TEMPLATE_TEST_CASE_METHOD_SIG based test run that fails - 3
|
466
|
+
not ok {test-number} - Nttp_Fixture<V>::value == 0 for: 3 == 0
|
467
|
+
# A TEMPLATE_TEST_CASE_METHOD_SIG based test run that fails - 6
|
468
|
+
not ok {test-number} - Nttp_Fixture<V>::value == 0 for: 6 == 0
|
469
|
+
# A TEMPLATE_TEST_CASE_METHOD_SIG based test run that succeeds - 1
|
470
|
+
ok {test-number} - Nttp_Fixture<V>::value > 0 for: 1 > 0
|
471
|
+
# A TEMPLATE_TEST_CASE_METHOD_SIG based test run that succeeds - 3
|
472
|
+
ok {test-number} - Nttp_Fixture<V>::value > 0 for: 3 > 0
|
473
|
+
# A TEMPLATE_TEST_CASE_METHOD_SIG based test run that succeeds - 6
|
474
|
+
ok {test-number} - Nttp_Fixture<V>::value > 0 for: 6 > 0
|
475
|
+
# A TEST_CASE_METHOD based test run that fails
|
476
|
+
not ok {test-number} - m_a == 2 for: 1 == 2
|
477
|
+
# A TEST_CASE_METHOD based test run that succeeds
|
478
|
+
ok {test-number} - m_a == 1 for: 1 == 1
|
479
|
+
# A Template product test case - Foo<float>
|
480
|
+
ok {test-number} - x.size() == 0 for: 0 == 0
|
481
|
+
# A Template product test case - Foo<int>
|
482
|
+
ok {test-number} - x.size() == 0 for: 0 == 0
|
483
|
+
# A Template product test case - std::vector<float>
|
484
|
+
ok {test-number} - x.size() == 0 for: 0 == 0
|
485
|
+
# A Template product test case - std::vector<int>
|
486
|
+
ok {test-number} - x.size() == 0 for: 0 == 0
|
487
|
+
# A Template product test case with array signature - Bar<float, 42>
|
488
|
+
ok {test-number} - x.size() > 0 for: 42 > 0
|
489
|
+
# A Template product test case with array signature - Bar<int, 9>
|
490
|
+
ok {test-number} - x.size() > 0 for: 9 > 0
|
491
|
+
# A Template product test case with array signature - std::array<float, 42>
|
492
|
+
ok {test-number} - x.size() > 0 for: 42 > 0
|
493
|
+
# A Template product test case with array signature - std::array<int, 9>
|
494
|
+
ok {test-number} - x.size() > 0 for: 9 > 0
|
495
|
+
# A comparison that uses literals instead of the normal constructor
|
496
|
+
ok {test-number} - d == 1.23_a for: 1.23 == Approx( 1.23 )
|
497
|
+
# A comparison that uses literals instead of the normal constructor
|
498
|
+
ok {test-number} - d != 1.22_a for: 1.23 != Approx( 1.22 )
|
499
|
+
# A comparison that uses literals instead of the normal constructor
|
500
|
+
ok {test-number} - -d == -1.23_a for: -1.23 == Approx( -1.23 )
|
501
|
+
# A comparison that uses literals instead of the normal constructor
|
502
|
+
ok {test-number} - d == 1.2_a .epsilon(.1) for: 1.23 == Approx( 1.2 )
|
503
|
+
# A comparison that uses literals instead of the normal constructor
|
504
|
+
ok {test-number} - d != 1.2_a .epsilon(.001) for: 1.23 != Approx( 1.2 )
|
505
|
+
# A comparison that uses literals instead of the normal constructor
|
506
|
+
ok {test-number} - d == 1_a .epsilon(.3) for: 1.23 == Approx( 1.0 )
|
507
|
+
# A couple of nested sections followed by a failure
|
508
|
+
ok {test-number} - with 1 message: 'that's not flying - that's failing in style'
|
509
|
+
# A couple of nested sections followed by a failure
|
510
|
+
not ok {test-number} - explicitly with 1 message: 'to infinity and beyond'
|
511
|
+
# A failing expression with a non streamable type is still captured
|
512
|
+
not ok {test-number} - &o1 == &o2 for: 0x<hex digits> == 0x<hex digits>
|
513
|
+
# A failing expression with a non streamable type is still captured
|
514
|
+
not ok {test-number} - o1 == o2 for: {?} == {?}
|
515
|
+
# Absolute margin
|
516
|
+
ok {test-number} - 104.0 != Approx(100.0) for: 104.0 != Approx( 100.0 )
|
517
|
+
# Absolute margin
|
518
|
+
ok {test-number} - 104.0 == Approx(100.0).margin(5) for: 104.0 == Approx( 100.0 )
|
519
|
+
# Absolute margin
|
520
|
+
ok {test-number} - 104.0 == Approx(100.0).margin(4) for: 104.0 == Approx( 100.0 )
|
521
|
+
# Absolute margin
|
522
|
+
ok {test-number} - 104.0 != Approx(100.0).margin(3) for: 104.0 != Approx( 100.0 )
|
523
|
+
# Absolute margin
|
524
|
+
ok {test-number} - 100.3 != Approx(100.0) for: 100.3 != Approx( 100.0 )
|
525
|
+
# Absolute margin
|
526
|
+
ok {test-number} - 100.3 == Approx(100.0).margin(0.5) for: 100.3 == Approx( 100.0 )
|
527
|
+
# An expression with side-effects should only be evaluated once
|
528
|
+
ok {test-number} - i++ == 7 for: 7 == 7
|
529
|
+
# An expression with side-effects should only be evaluated once
|
530
|
+
ok {test-number} - i++ == 8 for: 8 == 8
|
531
|
+
# An unchecked exception reports the line of the last assertion
|
532
|
+
ok {test-number} - 1 == 1
|
533
|
+
# An unchecked exception reports the line of the last assertion
|
534
|
+
not ok {test-number} - unexpected exception with message: 'unexpected exception'; expression was: {Unknown expression after the reported line}
|
535
|
+
# Anonymous test case 1
|
536
|
+
ok {test-number} - with 1 message: 'anonymous test case'
|
537
|
+
# Approx setters validate their arguments
|
538
|
+
ok {test-number} - Approx(0).margin(0)
|
539
|
+
# Approx setters validate their arguments
|
540
|
+
ok {test-number} - Approx(0).margin(1234656)
|
541
|
+
# Approx setters validate their arguments
|
542
|
+
ok {test-number} - Approx(0).margin(-2), std::domain_error
|
543
|
+
# Approx setters validate their arguments
|
544
|
+
ok {test-number} - Approx(0).epsilon(0)
|
545
|
+
# Approx setters validate their arguments
|
546
|
+
ok {test-number} - Approx(0).epsilon(1)
|
547
|
+
# Approx setters validate their arguments
|
548
|
+
ok {test-number} - Approx(0).epsilon(-0.001), std::domain_error
|
549
|
+
# Approx setters validate their arguments
|
550
|
+
ok {test-number} - Approx(0).epsilon(1.0001), std::domain_error
|
551
|
+
# Approx with exactly-representable margin
|
552
|
+
ok {test-number} - 0.25f == Approx(0.0f).margin(0.25f) for: 0.25f == Approx( 0.0 )
|
553
|
+
# Approx with exactly-representable margin
|
554
|
+
ok {test-number} - 0.0f == Approx(0.25f).margin(0.25f) for: 0.0f == Approx( 0.25 )
|
555
|
+
# Approx with exactly-representable margin
|
556
|
+
ok {test-number} - 0.5f == Approx(0.25f).margin(0.25f) for: 0.5f == Approx( 0.25 )
|
557
|
+
# Approx with exactly-representable margin
|
558
|
+
ok {test-number} - 245.0f == Approx(245.25f).margin(0.25f) for: 245.0f == Approx( 245.25 )
|
559
|
+
# Approx with exactly-representable margin
|
560
|
+
ok {test-number} - 245.5f == Approx(245.25f).margin(0.25f) for: 245.5f == Approx( 245.25 )
|
561
|
+
# Approximate PI
|
562
|
+
ok {test-number} - divide( 22, 7 ) == Approx( 3.141 ).epsilon( 0.001 ) for: 3.1428571429 == Approx( 3.141 )
|
563
|
+
# Approximate PI
|
564
|
+
ok {test-number} - divide( 22, 7 ) != Approx( 3.141 ).epsilon( 0.0001 ) for: 3.1428571429 != Approx( 3.141 )
|
565
|
+
# Approximate comparisons with different epsilons
|
566
|
+
ok {test-number} - d != Approx( 1.231 ) for: 1.23 != Approx( 1.231 )
|
567
|
+
# Approximate comparisons with different epsilons
|
568
|
+
ok {test-number} - d == Approx( 1.231 ).epsilon( 0.1 ) for: 1.23 == Approx( 1.231 )
|
569
|
+
# Approximate comparisons with floats
|
570
|
+
ok {test-number} - 1.23f == Approx( 1.23f ) for: 1.23f == Approx( 1.2300000191 )
|
571
|
+
# Approximate comparisons with floats
|
572
|
+
ok {test-number} - 0.0f == Approx( 0.0f ) for: 0.0f == Approx( 0.0 )
|
573
|
+
# Approximate comparisons with ints
|
574
|
+
ok {test-number} - 1 == Approx( 1 ) for: 1 == Approx( 1.0 )
|
575
|
+
# Approximate comparisons with ints
|
576
|
+
ok {test-number} - 0 == Approx( 0 ) for: 0 == Approx( 0.0 )
|
577
|
+
# Approximate comparisons with mixed numeric types
|
578
|
+
ok {test-number} - 1.0f == Approx( 1 ) for: 1.0f == Approx( 1.0 )
|
579
|
+
# Approximate comparisons with mixed numeric types
|
580
|
+
ok {test-number} - 0 == Approx( dZero) for: 0 == Approx( 0.0 )
|
581
|
+
# Approximate comparisons with mixed numeric types
|
582
|
+
ok {test-number} - 0 == Approx( dSmall ).margin( 0.001 ) for: 0 == Approx( 0.00001 )
|
583
|
+
# Approximate comparisons with mixed numeric types
|
584
|
+
ok {test-number} - 1.234f == Approx( dMedium ) for: 1.234f == Approx( 1.234 )
|
585
|
+
# Approximate comparisons with mixed numeric types
|
586
|
+
ok {test-number} - dMedium == Approx( 1.234f ) for: 1.234 == Approx( 1.2339999676 )
|
587
|
+
# Arbitrary predicate matcher
|
588
|
+
ok {test-number} - 1, Predicate<int>( alwaysTrue, "always true" ) for: 1 matches predicate: "always true"
|
589
|
+
# Arbitrary predicate matcher
|
590
|
+
ok {test-number} - 1, !Predicate<int>( alwaysFalse, "always false" ) for: 1 not matches predicate: "always false"
|
591
|
+
# Arbitrary predicate matcher
|
592
|
+
ok {test-number} - "Hello olleH", Predicate<std::string>( []( std::string const& str ) -> bool { return str.front() == str.back(); }, "First and last character should be equal" ) for: "Hello olleH" matches predicate: "First and last character should be equal"
|
593
|
+
# Arbitrary predicate matcher
|
594
|
+
ok {test-number} - "This wouldn't pass", !Predicate<std::string>( []( std::string const& str ) -> bool { return str.front() == str.back(); } ) for: "This wouldn't pass" not matches undescribed predicate
|
595
|
+
# Assertion macros support bit operators and bool conversions
|
596
|
+
ok {test-number} - lhs | rhs for: Val: 1 | Val: 2
|
597
|
+
# Assertion macros support bit operators and bool conversions
|
598
|
+
ok {test-number} - !(lhs & rhs) for: !(Val: 1 & Val: 2)
|
599
|
+
# Assertion macros support bit operators and bool conversions
|
600
|
+
ok {test-number} - HasBitOperators{ 1 } & HasBitOperators{ 1 } for: Val: 1 & Val: 1
|
601
|
+
# Assertion macros support bit operators and bool conversions
|
602
|
+
ok {test-number} - lhs ^ rhs for: Val: 1 ^ Val: 2
|
603
|
+
# Assertion macros support bit operators and bool conversions
|
604
|
+
ok {test-number} - !(lhs ^ lhs) for: !(Val: 1 ^ Val: 1)
|
605
|
+
# Assertions then sections
|
606
|
+
ok {test-number} - true
|
607
|
+
# Assertions then sections
|
608
|
+
ok {test-number} - true
|
609
|
+
# Assertions then sections
|
610
|
+
ok {test-number} - true
|
611
|
+
# Assertions then sections
|
612
|
+
ok {test-number} - true
|
613
|
+
# Assertions then sections
|
614
|
+
ok {test-number} - true
|
615
|
+
# Assertions then sections
|
616
|
+
ok {test-number} - true
|
617
|
+
# Basic use of the Contains range matcher
|
618
|
+
ok {test-number} - a, Contains(1) for: { 1, 2, 3 } contains element 1
|
619
|
+
# Basic use of the Contains range matcher
|
620
|
+
ok {test-number} - b, Contains(1) for: { 0, 1, 2 } contains element 1
|
621
|
+
# Basic use of the Contains range matcher
|
622
|
+
ok {test-number} - c, !Contains(1) for: { 4, 5, 6 } not contains element 1
|
623
|
+
# Basic use of the Contains range matcher
|
624
|
+
ok {test-number} - a, Contains(0, close_enough) for: { 1, 2, 3 } contains element 0
|
625
|
+
# Basic use of the Contains range matcher
|
626
|
+
ok {test-number} - b, Contains(0, close_enough) for: { 0, 1, 2 } contains element 0
|
627
|
+
# Basic use of the Contains range matcher
|
628
|
+
ok {test-number} - c, !Contains(0, close_enough) for: { 4, 5, 6 } not contains element 0
|
629
|
+
# Basic use of the Contains range matcher
|
630
|
+
ok {test-number} - a, Contains(4, [](auto&& lhs, size_t sz) { return lhs.size() == sz; }) for: { "abc", "abcd", "abcde" } contains element 4
|
631
|
+
# Basic use of the Contains range matcher
|
632
|
+
ok {test-number} - in, Contains(1) for: { 1, 2, 3, 4, 5 } contains element 1
|
633
|
+
# Basic use of the Contains range matcher
|
634
|
+
ok {test-number} - in, !Contains(8) for: { 1, 2, 3, 4, 5 } not contains element 8
|
635
|
+
# Basic use of the Contains range matcher
|
636
|
+
ok {test-number} - in, Contains(MoveOnlyTestElement{ 2 }) for: { 1, 2, 3 } contains element 2
|
637
|
+
# Basic use of the Contains range matcher
|
638
|
+
ok {test-number} - in, !Contains(MoveOnlyTestElement{ 9 }) for: { 1, 2, 3 } not contains element 9
|
639
|
+
# Basic use of the Contains range matcher
|
640
|
+
ok {test-number} - in, Contains(Catch::Matchers::WithinAbs(0.5, 0.5)) for: { 1.0, 2.0, 3.0, 0.0 } contains element matching is within 0.5 of 0.5
|
641
|
+
# Basic use of the Empty range matcher
|
642
|
+
ok {test-number} - empty_array, IsEmpty() for: { } is empty
|
643
|
+
# Basic use of the Empty range matcher
|
644
|
+
ok {test-number} - non_empty_array, !IsEmpty() for: { 0.0 } not is empty
|
645
|
+
# Basic use of the Empty range matcher
|
646
|
+
ok {test-number} - empty_vec, IsEmpty() for: { } is empty
|
647
|
+
# Basic use of the Empty range matcher
|
648
|
+
ok {test-number} - non_empty_vec, !IsEmpty() for: { 'a', 'b', 'c' } not is empty
|
649
|
+
# Basic use of the Empty range matcher
|
650
|
+
ok {test-number} - inner_lists_are_empty, !IsEmpty() for: { { } } not is empty
|
651
|
+
# Basic use of the Empty range matcher
|
652
|
+
ok {test-number} - inner_lists_are_empty.front(), IsEmpty() for: { } is empty
|
653
|
+
# Basic use of the Empty range matcher
|
654
|
+
ok {test-number} - has_empty{}, !IsEmpty() for: {?} not is empty
|
655
|
+
# Basic use of the Empty range matcher
|
656
|
+
ok {test-number} - unrelated::ADL_empty{}, IsEmpty() for: {?} is empty
|
657
|
+
# CAPTURE can deal with complex expressions
|
658
|
+
ok {test-number} - with 7 messages: 'a := 1' and 'b := 2' and 'c := 3' and 'a + b := 3' and 'a+b := 3' and 'c > b := true' and 'a == 1 := true'
|
659
|
+
# CAPTURE can deal with complex expressions involving commas
|
660
|
+
ok {test-number} - with 7 messages: 'std::vector<int>{1, 2, 3}[0, 1, 2] := 3' and 'std::vector<int>{1, 2, 3}[(0, 1)] := 2' and 'std::vector<int>{1, 2, 3}[0] := 1' and '(helper_1436<int, int>{12, -12}) := { 12, -12 }' and '(helper_1436<int, int>(-12, 12)) := { -12, 12 }' and '(1, 2) := 2' and '(2, 3) := 3'
|
661
|
+
# CAPTURE parses string and character constants
|
662
|
+
ok {test-number} - with 11 messages: '("comma, in string", "escaped, \", ") := "escaped, ", "' and '"single quote in string,'," := "single quote in string,',"' and '"some escapes, \\,\\\\" := "some escapes, \,\\"' and '"some, ), unmatched, } prenheses {[<" := "some, ), unmatched, } prenheses {[<"' and ''"' := '"'' and ''\'' := '''' and '',' := ','' and ''}' := '}'' and '')' := ')'' and ''(' := '('' and ''{' := '{''
|
663
|
+
# Capture and info messages
|
664
|
+
ok {test-number} - true with 1 message: 'i := 2'
|
665
|
+
# Capture and info messages
|
666
|
+
ok {test-number} - true with 1 message: '3'
|
667
|
+
# CaseInsensitiveEqualsTo is case insensitive
|
668
|
+
ok {test-number} - eq( "", "" ) for: true
|
669
|
+
# CaseInsensitiveEqualsTo is case insensitive
|
670
|
+
ok {test-number} - !(eq( "", "a" )) for: !false
|
671
|
+
# CaseInsensitiveEqualsTo is case insensitive
|
672
|
+
ok {test-number} - eq( "a", "a" ) for: true
|
673
|
+
# CaseInsensitiveEqualsTo is case insensitive
|
674
|
+
ok {test-number} - eq( "a", "A" ) for: true
|
675
|
+
# CaseInsensitiveEqualsTo is case insensitive
|
676
|
+
ok {test-number} - eq( "A", "a" ) for: true
|
677
|
+
# CaseInsensitiveEqualsTo is case insensitive
|
678
|
+
ok {test-number} - eq( "A", "A" ) for: true
|
679
|
+
# CaseInsensitiveEqualsTo is case insensitive
|
680
|
+
ok {test-number} - !(eq( "a", "b" )) for: !false
|
681
|
+
# CaseInsensitiveEqualsTo is case insensitive
|
682
|
+
ok {test-number} - !(eq( "a", "B" )) for: !false
|
683
|
+
# CaseInsensitiveLess is case insensitive
|
684
|
+
ok {test-number} - lt( "", "a" ) for: true
|
685
|
+
# CaseInsensitiveLess is case insensitive
|
686
|
+
ok {test-number} - !(lt( "a", "a" )) for: !false
|
687
|
+
# CaseInsensitiveLess is case insensitive
|
688
|
+
ok {test-number} - !(lt( "", "" )) for: !false
|
689
|
+
# CaseInsensitiveLess is case insensitive
|
690
|
+
ok {test-number} - lt( "a", "b" ) for: true
|
691
|
+
# CaseInsensitiveLess is case insensitive
|
692
|
+
ok {test-number} - lt( "a", "B" ) for: true
|
693
|
+
# CaseInsensitiveLess is case insensitive
|
694
|
+
ok {test-number} - lt( "A", "b" ) for: true
|
695
|
+
# CaseInsensitiveLess is case insensitive
|
696
|
+
ok {test-number} - lt( "A", "B" ) for: true
|
697
|
+
# Character pretty printing
|
698
|
+
ok {test-number} - tab == '\t' for: '\t' == '\t'
|
699
|
+
# Character pretty printing
|
700
|
+
ok {test-number} - newline == '\n' for: '\n' == '\n'
|
701
|
+
# Character pretty printing
|
702
|
+
ok {test-number} - carr_return == '\r' for: '\r' == '\r'
|
703
|
+
# Character pretty printing
|
704
|
+
ok {test-number} - form_feed == '\f' for: '\f' == '\f'
|
705
|
+
# Character pretty printing
|
706
|
+
ok {test-number} - space == ' ' for: ' ' == ' '
|
707
|
+
# Character pretty printing
|
708
|
+
ok {test-number} - c == chars[i] for: 'a' == 'a'
|
709
|
+
# Character pretty printing
|
710
|
+
ok {test-number} - c == chars[i] for: 'z' == 'z'
|
711
|
+
# Character pretty printing
|
712
|
+
ok {test-number} - c == chars[i] for: 'A' == 'A'
|
713
|
+
# Character pretty printing
|
714
|
+
ok {test-number} - c == chars[i] for: 'Z' == 'Z'
|
715
|
+
# Character pretty printing
|
716
|
+
ok {test-number} - null_terminator == '\0' for: 0 == 0
|
717
|
+
# Character pretty printing
|
718
|
+
ok {test-number} - c == i for: 2 == 2
|
719
|
+
# Character pretty printing
|
720
|
+
ok {test-number} - c == i for: 3 == 3
|
721
|
+
# Character pretty printing
|
722
|
+
ok {test-number} - c == i for: 4 == 4
|
723
|
+
# Character pretty printing
|
724
|
+
ok {test-number} - c == i for: 5 == 5
|
725
|
+
# Clara::Arg supports single-arg parse the way Opt does
|
726
|
+
ok {test-number} - name.empty() for: true
|
727
|
+
# Clara::Arg supports single-arg parse the way Opt does
|
728
|
+
ok {test-number} - name == "foo" for: "foo" == "foo"
|
729
|
+
# Clara::Opt supports accept-many lambdas
|
730
|
+
ok {test-number} - !(parse_result) for: !{?}
|
731
|
+
# Clara::Opt supports accept-many lambdas
|
732
|
+
ok {test-number} - parse_result for: {?}
|
733
|
+
# Clara::Opt supports accept-many lambdas
|
734
|
+
ok {test-number} - res == std::vector<std::string>{ "aaa", "bbb" } for: { "aaa", "bbb" } == { "aaa", "bbb" }
|
735
|
+
# ColourGuard behaviour
|
736
|
+
ok {test-number} - streamWrapper.str().empty() for: true
|
737
|
+
# ColourGuard behaviour
|
738
|
+
ok {test-number} - streamWrapper.str() == "1\nUsing code: 2\n2\nUsing code: 0\n3\n" for: "1 Using code: 2 2 Using code: 0 3 " == "1 Using code: 2 2 Using code: 0 3 "
|
739
|
+
# ColourGuard behaviour
|
740
|
+
ok {test-number} - streamWrapper.str() == "Using code: 2\nA\nB\nUsing code: 0\nC\n" for: "Using code: 2 A B Using code: 0 C " == "Using code: 2 A B Using code: 0 C "
|
741
|
+
# Combining MatchAllOfGeneric does not nest
|
742
|
+
ok {test-number} - with 1 message: 'std::is_same< decltype( ( MatcherA() && MatcherB() ) && MatcherC() ), Catch::Matchers::Detail:: MatchAllOfGeneric<MatcherA, MatcherB, MatcherC>>::value'
|
743
|
+
# Combining MatchAllOfGeneric does not nest
|
744
|
+
ok {test-number} - 1, ( MatcherA() && MatcherB() ) && MatcherC() for: 1 ( equals: (int) 1 or (string) "1" and equals: (long long) 1 and equals: (T) 1 )
|
745
|
+
# Combining MatchAllOfGeneric does not nest
|
746
|
+
ok {test-number} - with 1 message: 'std::is_same< decltype( MatcherA() && ( MatcherB() && MatcherC() ) ), Catch::Matchers::Detail:: MatchAllOfGeneric<MatcherA, MatcherB, MatcherC>>::value'
|
747
|
+
# Combining MatchAllOfGeneric does not nest
|
748
|
+
ok {test-number} - 1, MatcherA() && ( MatcherB() && MatcherC() ) for: 1 ( equals: (int) 1 or (string) "1" and equals: (long long) 1 and equals: (T) 1 )
|
749
|
+
# Combining MatchAllOfGeneric does not nest
|
750
|
+
ok {test-number} - with 1 message: 'std::is_same< decltype( ( MatcherA() && MatcherB() ) && ( MatcherC() && MatcherD() ) ), Catch::Matchers::Detail:: MatchAllOfGeneric<MatcherA, MatcherB, MatcherC, MatcherD>>:: value'
|
751
|
+
# Combining MatchAllOfGeneric does not nest
|
752
|
+
ok {test-number} - 1, ( MatcherA() && MatcherB() ) && ( MatcherC() && MatcherD() ) for: 1 ( equals: (int) 1 or (string) "1" and equals: (long long) 1 and equals: (T) 1 and equals: true )
|
753
|
+
# Combining MatchAnyOfGeneric does not nest
|
754
|
+
ok {test-number} - with 1 message: 'std::is_same< decltype( ( MatcherA() || MatcherB() ) || MatcherC() ), Catch::Matchers::Detail:: MatchAnyOfGeneric<MatcherA, MatcherB, MatcherC>>::value'
|
755
|
+
# Combining MatchAnyOfGeneric does not nest
|
756
|
+
ok {test-number} - 1, ( MatcherA() || MatcherB() ) || MatcherC() for: 1 ( equals: (int) 1 or (string) "1" or equals: (long long) 1 or equals: (T) 1 )
|
757
|
+
# Combining MatchAnyOfGeneric does not nest
|
758
|
+
ok {test-number} - with 1 message: 'std::is_same< decltype( MatcherA() || ( MatcherB() || MatcherC() ) ), Catch::Matchers::Detail:: MatchAnyOfGeneric<MatcherA, MatcherB, MatcherC>>::value'
|
759
|
+
# Combining MatchAnyOfGeneric does not nest
|
760
|
+
ok {test-number} - 1, MatcherA() || ( MatcherB() || MatcherC() ) for: 1 ( equals: (int) 1 or (string) "1" or equals: (long long) 1 or equals: (T) 1 )
|
761
|
+
# Combining MatchAnyOfGeneric does not nest
|
762
|
+
ok {test-number} - with 1 message: 'std::is_same< decltype( ( MatcherA() || MatcherB() ) || ( MatcherC() || MatcherD() ) ), Catch::Matchers::Detail:: MatchAnyOfGeneric<MatcherA, MatcherB, MatcherC, MatcherD>>:: value'
|
763
|
+
# Combining MatchAnyOfGeneric does not nest
|
764
|
+
ok {test-number} - 1, ( MatcherA() || MatcherB() ) || ( MatcherC() || MatcherD() ) for: 1 ( equals: (int) 1 or (string) "1" or equals: (long long) 1 or equals: (T) 1 or equals: true )
|
765
|
+
# Combining MatchNotOfGeneric does not nest
|
766
|
+
ok {test-number} - with 1 message: 'std::is_same< decltype( !MatcherA() ), Catch::Matchers::Detail::MatchNotOfGeneric<MatcherA>>::value'
|
767
|
+
# Combining MatchNotOfGeneric does not nest
|
768
|
+
ok {test-number} - 0, !MatcherA() for: 0 not equals: (int) 1 or (string) "1"
|
769
|
+
# Combining MatchNotOfGeneric does not nest
|
770
|
+
ok {test-number} - with 1 message: 'std::is_same<decltype( !!MatcherA() ), MatcherA const&>::value'
|
771
|
+
# Combining MatchNotOfGeneric does not nest
|
772
|
+
ok {test-number} - 1, !!MatcherA() for: 1 equals: (int) 1 or (string) "1"
|
773
|
+
# Combining MatchNotOfGeneric does not nest
|
774
|
+
ok {test-number} - with 1 message: 'std::is_same< decltype( !!!MatcherA() ), Catch::Matchers::Detail::MatchNotOfGeneric<MatcherA>>::value'
|
775
|
+
# Combining MatchNotOfGeneric does not nest
|
776
|
+
ok {test-number} - 0, !!!MatcherA() for: 0 not equals: (int) 1 or (string) "1"
|
777
|
+
# Combining MatchNotOfGeneric does not nest
|
778
|
+
ok {test-number} - with 1 message: 'std::is_same<decltype( !!!!MatcherA() ), MatcherA const&>::value'
|
779
|
+
# Combining MatchNotOfGeneric does not nest
|
780
|
+
ok {test-number} - 1, !!!!MatcherA() for: 1 equals: (int) 1 or (string) "1"
|
781
|
+
# Combining concrete matchers does not use templated matchers
|
782
|
+
ok {test-number} - with 1 message: 'std::is_same<decltype( StartsWith( "foo" ) || ( StartsWith( "bar" ) && EndsWith( "bar" ) && !EndsWith( "foo" ) ) ), Catch::Matchers::Detail::MatchAnyOf<std::string>>::value'
|
783
|
+
# Combining only templated matchers
|
784
|
+
ok {test-number} - with 1 message: 'std::is_same<decltype( MatcherA() || MatcherB() ), Catch::Matchers::Detail:: MatchAnyOfGeneric<MatcherA, MatcherB>>::value'
|
785
|
+
# Combining only templated matchers
|
786
|
+
ok {test-number} - 1, MatcherA() || MatcherB() for: 1 ( equals: (int) 1 or (string) "1" or equals: (long long) 1 )
|
787
|
+
# Combining only templated matchers
|
788
|
+
ok {test-number} - with 1 message: 'std::is_same<decltype( MatcherA() && MatcherB() ), Catch::Matchers::Detail:: MatchAllOfGeneric<MatcherA, MatcherB>>::value'
|
789
|
+
# Combining only templated matchers
|
790
|
+
ok {test-number} - 1, MatcherA() && MatcherB() for: 1 ( equals: (int) 1 or (string) "1" and equals: (long long) 1 )
|
791
|
+
# Combining only templated matchers
|
792
|
+
ok {test-number} - with 1 message: 'std::is_same< decltype( MatcherA() || !MatcherB() ), Catch::Matchers::Detail::MatchAnyOfGeneric< MatcherA, Catch::Matchers::Detail::MatchNotOfGeneric<MatcherB>>>::value'
|
793
|
+
# Combining only templated matchers
|
794
|
+
ok {test-number} - 1, MatcherA() || !MatcherB() for: 1 ( equals: (int) 1 or (string) "1" or not equals: (long long) 1 )
|
795
|
+
# Combining templated and concrete matchers
|
796
|
+
ok {test-number} - vec, Predicate<std::vector<int>>( []( auto const& v ) { return std::all_of( v.begin(), v.end(), []( int elem ) { return elem % 2 == 1; } ); }, "All elements are odd" ) && !EqualsRange( a ) for: { 1, 3, 5 } ( matches predicate: "All elements are odd" and not Equals: { 5, 3, 1 } )
|
797
|
+
# Combining templated and concrete matchers
|
798
|
+
ok {test-number} - str, StartsWith( "foo" ) && EqualsRange( arr ) && EndsWith( "bar" ) for: "foobar" ( starts with: "foo" and Equals: { 'f', 'o', 'o', 'b', 'a', 'r' } and ends with: "bar" )
|
799
|
+
# Combining templated and concrete matchers
|
800
|
+
ok {test-number} - str, StartsWith( "foo" ) && !EqualsRange( bad_arr ) && EndsWith( "bar" ) for: "foobar" ( starts with: "foo" and not Equals: { 'o', 'o', 'f', 'b', 'a', 'r' } and ends with: "bar" )
|
801
|
+
# Combining templated and concrete matchers
|
802
|
+
ok {test-number} - str, EqualsRange( arr ) && StartsWith( "foo" ) && EndsWith( "bar" ) for: "foobar" ( Equals: { 'f', 'o', 'o', 'b', 'a', 'r' } and starts with: "foo" and ends with: "bar" )
|
803
|
+
# Combining templated and concrete matchers
|
804
|
+
ok {test-number} - str, !EqualsRange( bad_arr ) && StartsWith( "foo" ) && EndsWith( "bar" ) for: "foobar" ( not Equals: { 'o', 'o', 'f', 'b', 'a', 'r' } and starts with: "foo" and ends with: "bar" )
|
805
|
+
# Combining templated and concrete matchers
|
806
|
+
ok {test-number} - str, EqualsRange( bad_arr ) || ( StartsWith( "foo" ) && EndsWith( "bar" ) ) for: "foobar" ( Equals: { 'o', 'o', 'f', 'b', 'a', 'r' } or ( starts with: "foo" and ends with: "bar" ) )
|
807
|
+
# Combining templated and concrete matchers
|
808
|
+
ok {test-number} - str, ( StartsWith( "foo" ) && EndsWith( "bar" ) ) || EqualsRange( bad_arr ) for: "foobar" ( ( starts with: "foo" and ends with: "bar" ) or Equals: { 'o', 'o', 'f', 'b', 'a', 'r' } )
|
809
|
+
# Combining templated matchers
|
810
|
+
ok {test-number} - container, EqualsRange( a ) || EqualsRange( b ) || EqualsRange( c ) for: { 1, 2, 3 } ( Equals: { 1, 2, 3 } or Equals: { 0, 1, 2 } or Equals: { 4, 5, 6 } )
|
811
|
+
# Commas in various macros are allowed
|
812
|
+
ok {test-number} - std::vector<constructor_throws>{constructor_throws{}, constructor_throws{}}
|
813
|
+
# Commas in various macros are allowed
|
814
|
+
ok {test-number} - std::vector<constructor_throws>{constructor_throws{}, constructor_throws{}}
|
815
|
+
# Commas in various macros are allowed
|
816
|
+
ok {test-number} - std::vector<int>{1, 2, 3} == std::vector<int>{1, 2, 3}
|
817
|
+
# Commas in various macros are allowed
|
818
|
+
ok {test-number} - std::vector<int>{1, 2, 3} == std::vector<int>{1, 2, 3}
|
819
|
+
# Commas in various macros are allowed
|
820
|
+
ok {test-number} - std::vector<int>{1, 2} == std::vector<int>{1, 2} for: { 1, 2 } == { 1, 2 }
|
821
|
+
# Commas in various macros are allowed
|
822
|
+
ok {test-number} - std::vector<int>{1, 2} == std::vector<int>{1, 2} for: { 1, 2 } == { 1, 2 }
|
823
|
+
# Commas in various macros are allowed
|
824
|
+
ok {test-number} - !(std::vector<int>{1, 2} == std::vector<int>{1, 2, 3}) for: !({ 1, 2 } == { 1, 2, 3 })
|
825
|
+
# Commas in various macros are allowed
|
826
|
+
ok {test-number} - !(std::vector<int>{1, 2} == std::vector<int>{1, 2, 3}) for: !({ 1, 2 } == { 1, 2, 3 })
|
827
|
+
# Commas in various macros are allowed
|
828
|
+
ok {test-number} - std::vector<int>{1, 2} == std::vector<int>{1, 2} for: { 1, 2 } == { 1, 2 }
|
829
|
+
# Commas in various macros are allowed
|
830
|
+
ok {test-number} - std::vector<int>{1, 2} == std::vector<int>{1, 2} for: { 1, 2 } == { 1, 2 }
|
831
|
+
# Commas in various macros are allowed
|
832
|
+
ok {test-number} - true
|
833
|
+
# Commas in various macros are allowed
|
834
|
+
ok {test-number} - std::vector<int>{1, 2} == std::vector<int>{1, 2} for: { 1, 2 } == { 1, 2 }
|
835
|
+
# Comparing function pointers
|
836
|
+
ok {test-number} - a for: 0x<hex digits>
|
837
|
+
# Comparing function pointers
|
838
|
+
ok {test-number} - a == &foo for: 0x<hex digits> == 0x<hex digits>
|
839
|
+
# Comparison ops
|
840
|
+
ok {test-number} - SimplePcg32{} == SimplePcg32{} for: {?} == {?}
|
841
|
+
# Comparison ops
|
842
|
+
ok {test-number} - SimplePcg32{ 0 } != SimplePcg32{} for: {?} != {?}
|
843
|
+
# Comparison ops
|
844
|
+
ok {test-number} - !(SimplePcg32{ 1 } == SimplePcg32{ 2 }) for: !({?} == {?})
|
845
|
+
# Comparison ops
|
846
|
+
ok {test-number} - !(SimplePcg32{ 1 } != SimplePcg32{ 1 }) for: !({?} != {?})
|
847
|
+
# Comparison with explicitly convertible types
|
848
|
+
ok {test-number} - td == Approx(10.0) for: StrongDoubleTypedef(10) == Approx( 10.0 )
|
849
|
+
# Comparison with explicitly convertible types
|
850
|
+
ok {test-number} - Approx(10.0) == td for: Approx( 10.0 ) == StrongDoubleTypedef(10)
|
851
|
+
# Comparison with explicitly convertible types
|
852
|
+
ok {test-number} - td != Approx(11.0) for: StrongDoubleTypedef(10) != Approx( 11.0 )
|
853
|
+
# Comparison with explicitly convertible types
|
854
|
+
ok {test-number} - Approx(11.0) != td for: Approx( 11.0 ) != StrongDoubleTypedef(10)
|
855
|
+
# Comparison with explicitly convertible types
|
856
|
+
ok {test-number} - td <= Approx(10.0) for: StrongDoubleTypedef(10) <= Approx( 10.0 )
|
857
|
+
# Comparison with explicitly convertible types
|
858
|
+
ok {test-number} - td <= Approx(11.0) for: StrongDoubleTypedef(10) <= Approx( 11.0 )
|
859
|
+
# Comparison with explicitly convertible types
|
860
|
+
ok {test-number} - Approx(10.0) <= td for: Approx( 10.0 ) <= StrongDoubleTypedef(10)
|
861
|
+
# Comparison with explicitly convertible types
|
862
|
+
ok {test-number} - Approx(9.0) <= td for: Approx( 9.0 ) <= StrongDoubleTypedef(10)
|
863
|
+
# Comparison with explicitly convertible types
|
864
|
+
ok {test-number} - td >= Approx(9.0) for: StrongDoubleTypedef(10) >= Approx( 9.0 )
|
865
|
+
# Comparison with explicitly convertible types
|
866
|
+
ok {test-number} - td >= Approx(td) for: StrongDoubleTypedef(10) >= Approx( 10.0 )
|
867
|
+
# Comparison with explicitly convertible types
|
868
|
+
ok {test-number} - Approx(td) >= td for: Approx( 10.0 ) >= StrongDoubleTypedef(10)
|
869
|
+
# Comparison with explicitly convertible types
|
870
|
+
ok {test-number} - Approx(11.0) >= td for: Approx( 11.0 ) >= StrongDoubleTypedef(10)
|
871
|
+
# Comparisons between ints where one side is computed
|
872
|
+
ok {test-number} - 54 == 6*9 for: 54 == 54
|
873
|
+
# Comparisons between unsigned ints and negative signed ints match c++ standard behaviour
|
874
|
+
ok {test-number} - ( -1 > 2u ) for: true
|
875
|
+
# Comparisons between unsigned ints and negative signed ints match c++ standard behaviour
|
876
|
+
ok {test-number} - -1 > 2u for: -1 > 2
|
877
|
+
# Comparisons between unsigned ints and negative signed ints match c++ standard behaviour
|
878
|
+
ok {test-number} - ( 2u < -1 ) for: true
|
879
|
+
# Comparisons between unsigned ints and negative signed ints match c++ standard behaviour
|
880
|
+
ok {test-number} - 2u < -1 for: 2 < -1
|
881
|
+
# Comparisons between unsigned ints and negative signed ints match c++ standard behaviour
|
882
|
+
ok {test-number} - ( minInt > 2u ) for: true
|
883
|
+
# Comparisons between unsigned ints and negative signed ints match c++ standard behaviour
|
884
|
+
ok {test-number} - minInt > 2u for: -2147483648 > 2
|
885
|
+
# Comparisons with int literals don't warn when mixing signed/ unsigned
|
886
|
+
ok {test-number} - i == 1 for: 1 == 1
|
887
|
+
# Comparisons with int literals don't warn when mixing signed/ unsigned
|
888
|
+
ok {test-number} - ui == 2 for: 2 == 2
|
889
|
+
# Comparisons with int literals don't warn when mixing signed/ unsigned
|
890
|
+
ok {test-number} - l == 3 for: 3 == 3
|
891
|
+
# Comparisons with int literals don't warn when mixing signed/ unsigned
|
892
|
+
ok {test-number} - ul == 4 for: 4 == 4
|
893
|
+
# Comparisons with int literals don't warn when mixing signed/ unsigned
|
894
|
+
ok {test-number} - c == 5 for: 5 == 5
|
895
|
+
# Comparisons with int literals don't warn when mixing signed/ unsigned
|
896
|
+
ok {test-number} - uc == 6 for: 6 == 6
|
897
|
+
# Comparisons with int literals don't warn when mixing signed/ unsigned
|
898
|
+
ok {test-number} - 1 == i for: 1 == 1
|
899
|
+
# Comparisons with int literals don't warn when mixing signed/ unsigned
|
900
|
+
ok {test-number} - 2 == ui for: 2 == 2
|
901
|
+
# Comparisons with int literals don't warn when mixing signed/ unsigned
|
902
|
+
ok {test-number} - 3 == l for: 3 == 3
|
903
|
+
# Comparisons with int literals don't warn when mixing signed/ unsigned
|
904
|
+
ok {test-number} - 4 == ul for: 4 == 4
|
905
|
+
# Comparisons with int literals don't warn when mixing signed/ unsigned
|
906
|
+
ok {test-number} - 5 == c for: 5 == 5
|
907
|
+
# Comparisons with int literals don't warn when mixing signed/ unsigned
|
908
|
+
ok {test-number} - 6 == uc for: 6 == 6
|
909
|
+
# Comparisons with int literals don't warn when mixing signed/ unsigned
|
910
|
+
ok {test-number} - (std::numeric_limits<uint32_t>::max)() > ul for: 4294967295 (0x<hex digits>) > 4
|
911
|
+
# Composed generic matchers shortcircuit
|
912
|
+
ok {test-number} - !(matcher.match( 1 )) for: !false
|
913
|
+
# Composed generic matchers shortcircuit
|
914
|
+
ok {test-number} - first.matchCalled for: true
|
915
|
+
# Composed generic matchers shortcircuit
|
916
|
+
ok {test-number} - !second.matchCalled for: true
|
917
|
+
# Composed generic matchers shortcircuit
|
918
|
+
ok {test-number} - matcher.match( 1 ) for: true
|
919
|
+
# Composed generic matchers shortcircuit
|
920
|
+
ok {test-number} - first.matchCalled for: true
|
921
|
+
# Composed generic matchers shortcircuit
|
922
|
+
ok {test-number} - !second.matchCalled for: true
|
923
|
+
# Composed matchers shortcircuit
|
924
|
+
ok {test-number} - !(matcher.match( 1 )) for: !false
|
925
|
+
# Composed matchers shortcircuit
|
926
|
+
ok {test-number} - first.matchCalled for: true
|
927
|
+
# Composed matchers shortcircuit
|
928
|
+
ok {test-number} - !second.matchCalled for: true
|
929
|
+
# Composed matchers shortcircuit
|
930
|
+
ok {test-number} - matcher.match( 1 ) for: true
|
931
|
+
# Composed matchers shortcircuit
|
932
|
+
ok {test-number} - first.matchCalled for: true
|
933
|
+
# Composed matchers shortcircuit
|
934
|
+
ok {test-number} - !second.matchCalled for: true
|
935
|
+
# Contains string matcher
|
936
|
+
not ok {test-number} - testStringForMatching(), ContainsSubstring( "not there", Catch::CaseSensitive::No ) for: "this string contains 'abc' as a substring" contains: "not there" (case insensitive)
|
937
|
+
# Contains string matcher
|
938
|
+
not ok {test-number} - testStringForMatching(), ContainsSubstring( "STRING" ) for: "this string contains 'abc' as a substring" contains: "STRING"
|
939
|
+
# Copy and then generate a range
|
940
|
+
ok {test-number} - elem % 2 == 1 for: 1 == 1
|
941
|
+
# Copy and then generate a range
|
942
|
+
ok {test-number} - elem % 2 == 1 for: 1 == 1
|
943
|
+
# Copy and then generate a range
|
944
|
+
ok {test-number} - elem % 2 == 1 for: 1 == 1
|
945
|
+
# Copy and then generate a range
|
946
|
+
ok {test-number} - elem % 2 == 1 for: 1 == 1
|
947
|
+
# Copy and then generate a range
|
948
|
+
ok {test-number} - elem % 2 == 1 for: 1 == 1
|
949
|
+
# Copy and then generate a range
|
950
|
+
ok {test-number} - elem % 2 == 1 for: 1 == 1
|
951
|
+
# Copy and then generate a range
|
952
|
+
ok {test-number} - elem % 2 == 1 for: 1 == 1
|
953
|
+
# Copy and then generate a range
|
954
|
+
ok {test-number} - elem % 2 == 1 for: 1 == 1
|
955
|
+
# Copy and then generate a range
|
956
|
+
ok {test-number} - elem % 2 == 1 for: 1 == 1
|
957
|
+
# Copy and then generate a range
|
958
|
+
ok {test-number} - elem % 2 == 1 for: 1 == 1
|
959
|
+
# Copy and then generate a range
|
960
|
+
ok {test-number} - elem % 2 == 1 for: 1 == 1
|
961
|
+
# Copy and then generate a range
|
962
|
+
ok {test-number} - elem % 2 == 1 for: 1 == 1
|
963
|
+
# Copy and then generate a range
|
964
|
+
ok {test-number} - call_count == 1 for: 1 == 1
|
965
|
+
# Copy and then generate a range
|
966
|
+
ok {test-number} - make_data().size() == test_count for: 6 == 6
|
967
|
+
# Cout stream properly declares it writes to stdout
|
968
|
+
ok {test-number} - Catch::makeStream( "-" )->isConsole() for: true
|
969
|
+
# Custom exceptions can be translated when testing for nothrow
|
970
|
+
not ok {test-number} - unexpected exception with message: 'custom exception - not std'; expression was: throwCustom()
|
971
|
+
# Custom exceptions can be translated when testing for throwing as something else
|
972
|
+
not ok {test-number} - unexpected exception with message: 'custom exception - not std'; expression was: throwCustom(), std::exception
|
973
|
+
# Custom std-exceptions can be custom translated
|
974
|
+
not ok {test-number} - unexpected exception with message: 'custom std exception'
|
975
|
+
# Default scale is invisible to comparison
|
976
|
+
ok {test-number} - 101.000001 != Approx(100).epsilon(0.01) for: 101.000001 != Approx( 100.0 )
|
977
|
+
# Default scale is invisible to comparison
|
978
|
+
ok {test-number} - std::pow(10, -5) != Approx(std::pow(10, -7)) for: 0.00001 != Approx( 0.0000001 )
|
979
|
+
# Directly creating an EnumInfo
|
980
|
+
ok {test-number} - enumInfo->lookup(0) == "Value1" for: Value1 == "Value1"
|
981
|
+
# Directly creating an EnumInfo
|
982
|
+
ok {test-number} - enumInfo->lookup(1) == "Value2" for: Value2 == "Value2"
|
983
|
+
# Directly creating an EnumInfo
|
984
|
+
ok {test-number} - enumInfo->lookup(3) == "{** unexpected enum value **}" for: {** unexpected enum value **} == "{** unexpected enum value **}"
|
985
|
+
# Empty stream name opens cout stream
|
986
|
+
ok {test-number} - Catch::makeStream( "" )->isConsole() for: true
|
987
|
+
# Empty tag is not allowed
|
988
|
+
ok {test-number} - Catch::TestCaseInfo( "", { "fake test name", "[]" }, dummySourceLineInfo )
|
989
|
+
# EndsWith string matcher
|
990
|
+
not ok {test-number} - testStringForMatching(), EndsWith( "Substring" ) for: "this string contains 'abc' as a substring" ends with: "Substring"
|
991
|
+
# EndsWith string matcher
|
992
|
+
not ok {test-number} - testStringForMatching(), EndsWith( "this", Catch::CaseSensitive::No ) for: "this string contains 'abc' as a substring" ends with: "this" (case insensitive)
|
993
|
+
# Enums can quickly have stringification enabled using REGISTER_ENUM
|
994
|
+
ok {test-number} - stringify( EnumClass3::Value1 ) == "Value1" for: "Value1" == "Value1"
|
995
|
+
# Enums can quickly have stringification enabled using REGISTER_ENUM
|
996
|
+
ok {test-number} - stringify( EnumClass3::Value2 ) == "Value2" for: "Value2" == "Value2"
|
997
|
+
# Enums can quickly have stringification enabled using REGISTER_ENUM
|
998
|
+
ok {test-number} - stringify( EnumClass3::Value3 ) == "Value3" for: "Value3" == "Value3"
|
999
|
+
# Enums can quickly have stringification enabled using REGISTER_ENUM
|
1000
|
+
ok {test-number} - stringify( EnumClass3::Value4 ) == "{** unexpected enum value **}" for: "{** unexpected enum value **}" == "{** unexpected enum value **}"
|
1001
|
+
# Enums can quickly have stringification enabled using REGISTER_ENUM
|
1002
|
+
ok {test-number} - stringify( ec3 ) == "Value2" for: "Value2" == "Value2"
|
1003
|
+
# Enums in namespaces can quickly have stringification enabled using REGISTER_ENUM
|
1004
|
+
ok {test-number} - stringify( Bikeshed::Colours::Red ) == "Red" for: "Red" == "Red"
|
1005
|
+
# Enums in namespaces can quickly have stringification enabled using REGISTER_ENUM
|
1006
|
+
ok {test-number} - stringify( Bikeshed::Colours::Blue ) == "Blue" for: "Blue" == "Blue"
|
1007
|
+
# Epsilon only applies to Approx's value
|
1008
|
+
ok {test-number} - 101.01 != Approx(100).epsilon(0.01) for: 101.01 != Approx( 100.0 )
|
1009
|
+
# Equality checks that should fail
|
1010
|
+
not ok {test-number} - data.int_seven == 6 for: 7 == 6
|
1011
|
+
# Equality checks that should fail
|
1012
|
+
not ok {test-number} - data.int_seven == 8 for: 7 == 8
|
1013
|
+
# Equality checks that should fail
|
1014
|
+
not ok {test-number} - data.int_seven == 0 for: 7 == 0
|
1015
|
+
# Equality checks that should fail
|
1016
|
+
not ok {test-number} - data.float_nine_point_one == Approx( 9.11f ) for: 9.1f == Approx( 9.1099996567 )
|
1017
|
+
# Equality checks that should fail
|
1018
|
+
not ok {test-number} - data.float_nine_point_one == Approx( 9.0f ) for: 9.1f == Approx( 9.0 )
|
1019
|
+
# Equality checks that should fail
|
1020
|
+
not ok {test-number} - data.float_nine_point_one == Approx( 1 ) for: 9.1f == Approx( 1.0 )
|
1021
|
+
# Equality checks that should fail
|
1022
|
+
not ok {test-number} - data.float_nine_point_one == Approx( 0 ) for: 9.1f == Approx( 0.0 )
|
1023
|
+
# Equality checks that should fail
|
1024
|
+
not ok {test-number} - data.double_pi == Approx( 3.1415 ) for: 3.1415926535 == Approx( 3.1415 )
|
1025
|
+
# Equality checks that should fail
|
1026
|
+
not ok {test-number} - data.str_hello == "goodbye" for: "hello" == "goodbye"
|
1027
|
+
# Equality checks that should fail
|
1028
|
+
not ok {test-number} - data.str_hello == "hell" for: "hello" == "hell"
|
1029
|
+
# Equality checks that should fail
|
1030
|
+
not ok {test-number} - data.str_hello == "hello1" for: "hello" == "hello1"
|
1031
|
+
# Equality checks that should fail
|
1032
|
+
not ok {test-number} - data.str_hello.size() == 6 for: 5 == 6
|
1033
|
+
# Equality checks that should fail
|
1034
|
+
not ok {test-number} - x == Approx( 1.301 ) for: 1.3 == Approx( 1.301 )
|
1035
|
+
# Equality checks that should succeed
|
1036
|
+
ok {test-number} - data.int_seven == 7 for: 7 == 7
|
1037
|
+
# Equality checks that should succeed
|
1038
|
+
ok {test-number} - data.float_nine_point_one == Approx( 9.1f ) for: 9.1f == Approx( 9.1000003815 )
|
1039
|
+
# Equality checks that should succeed
|
1040
|
+
ok {test-number} - data.double_pi == Approx( 3.1415926535 ) for: 3.1415926535 == Approx( 3.1415926535 )
|
1041
|
+
# Equality checks that should succeed
|
1042
|
+
ok {test-number} - data.str_hello == "hello" for: "hello" == "hello"
|
1043
|
+
# Equality checks that should succeed
|
1044
|
+
ok {test-number} - "hello" == data.str_hello for: "hello" == "hello"
|
1045
|
+
# Equality checks that should succeed
|
1046
|
+
ok {test-number} - data.str_hello.size() == 5 for: 5 == 5
|
1047
|
+
# Equality checks that should succeed
|
1048
|
+
ok {test-number} - x == Approx( 1.3 ) for: 1.3 == Approx( 1.3 )
|
1049
|
+
# Equals
|
1050
|
+
ok {test-number} - testStringForMatching(), Equals( "this string contains 'abc' as a substring" ) for: "this string contains 'abc' as a substring" equals: "this string contains 'abc' as a substring"
|
1051
|
+
# Equals
|
1052
|
+
ok {test-number} - testStringForMatching(), Equals( "this string contains 'ABC' as a substring", Catch::CaseSensitive::No ) for: "this string contains 'abc' as a substring" equals: "this string contains 'abc' as a substring" (case insensitive)
|
1053
|
+
# Equals string matcher
|
1054
|
+
not ok {test-number} - testStringForMatching(), Equals( "this string contains 'ABC' as a substring" ) for: "this string contains 'abc' as a substring" equals: "this string contains 'ABC' as a substring"
|
1055
|
+
# Equals string matcher
|
1056
|
+
not ok {test-number} - testStringForMatching(), Equals( "something else", Catch::CaseSensitive::No ) for: "this string contains 'abc' as a substring" equals: "something else" (case insensitive)
|
1057
|
+
# Exception as a value (e.g. in REQUIRE_THROWS_MATCHES) can be stringified
|
1058
|
+
ok {test-number} - ::Catch::Detail::stringify(WhatException{}) == "This exception has overridden what() method" for: "This exception has overridden what() method" == "This exception has overridden what() method"
|
1059
|
+
# Exception as a value (e.g. in REQUIRE_THROWS_MATCHES) can be stringified
|
1060
|
+
ok {test-number} - ::Catch::Detail::stringify(OperatorException{}) == "OperatorException" for: "OperatorException" == "OperatorException"
|
1061
|
+
# Exception as a value (e.g. in REQUIRE_THROWS_MATCHES) can be stringified
|
1062
|
+
ok {test-number} - ::Catch::Detail::stringify(StringMakerException{}) == "StringMakerException" for: "StringMakerException" == "StringMakerException"
|
1063
|
+
# Exception matchers that fail
|
1064
|
+
not ok {test-number} - expected exception, got none; expression was: doesNotThrow(), SpecialException, ExceptionMatcher{ 1 }
|
1065
|
+
# Exception matchers that fail
|
1066
|
+
not ok {test-number} - expected exception, got none; expression was: doesNotThrow(), SpecialException, ExceptionMatcher{ 1 }
|
1067
|
+
# Exception matchers that fail
|
1068
|
+
not ok {test-number} - unexpected exception with message: 'Unknown exception'; expression was: throwsAsInt( 1 ), SpecialException, ExceptionMatcher{ 1 }
|
1069
|
+
# Exception matchers that fail
|
1070
|
+
not ok {test-number} - unexpected exception with message: 'Unknown exception'; expression was: throwsAsInt( 1 ), SpecialException, ExceptionMatcher{ 1 }
|
1071
|
+
# Exception matchers that fail
|
1072
|
+
not ok {test-number} - throwsSpecialException( 3 ), SpecialException, ExceptionMatcher{ 1 } for: SpecialException::what special exception has value of 1
|
1073
|
+
# Exception matchers that fail
|
1074
|
+
not ok {test-number} - throwsSpecialException( 4 ), SpecialException, ExceptionMatcher{ 1 } for: SpecialException::what special exception has value of 1
|
1075
|
+
# Exception matchers that succeed
|
1076
|
+
ok {test-number} - throwsSpecialException( 1 ), SpecialException, ExceptionMatcher{ 1 } for: SpecialException::what special exception has value of 1
|
1077
|
+
# Exception matchers that succeed
|
1078
|
+
ok {test-number} - throwsSpecialException( 2 ), SpecialException, ExceptionMatcher{ 2 } for: SpecialException::what special exception has value of 2
|
1079
|
+
# Exception message can be matched
|
1080
|
+
ok {test-number} - throwsDerivedException(), DerivedException, MessageMatches( StartsWith( "Derived" ) ) for: DerivedException::what matches "starts with: "Derived""
|
1081
|
+
# Exception message can be matched
|
1082
|
+
ok {test-number} - throwsDerivedException(), DerivedException, MessageMatches( EndsWith( "::what" ) ) for: DerivedException::what matches "ends with: "::what""
|
1083
|
+
# Exception message can be matched
|
1084
|
+
ok {test-number} - throwsDerivedException(), DerivedException, MessageMatches( !StartsWith( "::what" ) ) for: DerivedException::what matches "not starts with: "::what""
|
1085
|
+
# Exception message can be matched
|
1086
|
+
ok {test-number} - throwsSpecialException( 2 ), SpecialException, MessageMatches( StartsWith( "Special" ) ) for: SpecialException::what matches "starts with: "Special""
|
1087
|
+
# Exception messages can be tested for
|
1088
|
+
ok {test-number} - thisThrows(), "expected exception" for: "expected exception" equals: "expected exception"
|
1089
|
+
# Exception messages can be tested for
|
1090
|
+
ok {test-number} - thisThrows(), Equals( "expecteD Exception", Catch::CaseSensitive::No ) for: "expected exception" equals: "expected exception" (case insensitive)
|
1091
|
+
# Exception messages can be tested for
|
1092
|
+
ok {test-number} - thisThrows(), StartsWith( "expected" ) for: "expected exception" starts with: "expected"
|
1093
|
+
# Exception messages can be tested for
|
1094
|
+
ok {test-number} - thisThrows(), EndsWith( "exception" ) for: "expected exception" ends with: "exception"
|
1095
|
+
# Exception messages can be tested for
|
1096
|
+
ok {test-number} - thisThrows(), ContainsSubstring( "except" ) for: "expected exception" contains: "except"
|
1097
|
+
# Exception messages can be tested for
|
1098
|
+
ok {test-number} - thisThrows(), ContainsSubstring( "exCept", Catch::CaseSensitive::No ) for: "expected exception" contains: "except" (case insensitive)
|
1099
|
+
# Exceptions matchers
|
1100
|
+
ok {test-number} - throwsDerivedException(), DerivedException, Message( "DerivedException::what" ) for: DerivedException::what exception message matches "DerivedException::what"
|
1101
|
+
# Exceptions matchers
|
1102
|
+
ok {test-number} - throwsDerivedException(), DerivedException, !Message( "derivedexception::what" ) for: DerivedException::what not exception message matches "derivedexception::what"
|
1103
|
+
# Exceptions matchers
|
1104
|
+
ok {test-number} - throwsSpecialException( 2 ), SpecialException, !Message( "DerivedException::what" ) for: SpecialException::what not exception message matches "DerivedException::what"
|
1105
|
+
# Exceptions matchers
|
1106
|
+
ok {test-number} - throwsSpecialException( 2 ), SpecialException, Message( "SpecialException::what" ) for: SpecialException::what exception message matches "SpecialException::what"
|
1107
|
+
# Expected exceptions that don't throw or unexpected exceptions fail the test
|
1108
|
+
not ok {test-number} - unexpected exception with message: 'expected exception'; expression was: thisThrows(), std::string
|
1109
|
+
# Expected exceptions that don't throw or unexpected exceptions fail the test
|
1110
|
+
not ok {test-number} - expected exception, got none; expression was: thisDoesntThrow(), std::domain_error
|
1111
|
+
# Expected exceptions that don't throw or unexpected exceptions fail the test
|
1112
|
+
not ok {test-number} - unexpected exception with message: 'expected exception'; expression was: thisThrows()
|
1113
|
+
# FAIL aborts the test
|
1114
|
+
not ok {test-number} - explicitly with 1 message: 'This is a failure'
|
1115
|
+
# FAIL does not require an argument
|
1116
|
+
not ok {test-number} - explicitly
|
1117
|
+
# FAIL_CHECK does not abort the test
|
1118
|
+
not ok {test-number} - explicitly with 1 message: 'This is a failure'
|
1119
|
+
# FAIL_CHECK does not abort the test
|
1120
|
+
warning {test-number} - 'This message appears in the output'
|
1121
|
+
# Factorials are computed
|
1122
|
+
ok {test-number} - Factorial(0) == 1 for: 1 == 1
|
1123
|
+
# Factorials are computed
|
1124
|
+
ok {test-number} - Factorial(1) == 1 for: 1 == 1
|
1125
|
+
# Factorials are computed
|
1126
|
+
ok {test-number} - Factorial(2) == 2 for: 2 == 2
|
1127
|
+
# Factorials are computed
|
1128
|
+
ok {test-number} - Factorial(3) == 6 for: 6 == 6
|
1129
|
+
# Factorials are computed
|
1130
|
+
ok {test-number} - Factorial(10) == 3628800 for: 3628800 (0x<hex digits>) == 3628800 (0x<hex digits>)
|
1131
|
+
# Filter generator throws exception for empty generator
|
1132
|
+
ok {test-number} - filter( []( int ) { return false; }, value( 3 ) ), Catch::GeneratorException
|
1133
|
+
# Floating point matchers: double
|
1134
|
+
ok {test-number} - 10., WithinRel( 11.1, 0.1 ) for: 10.0 and 11.1 are within 10% of each other
|
1135
|
+
# Floating point matchers: double
|
1136
|
+
ok {test-number} - 10., !WithinRel( 11.2, 0.1 ) for: 10.0 not and 11.2 are within 10% of each other
|
1137
|
+
# Floating point matchers: double
|
1138
|
+
ok {test-number} - 1., !WithinRel( 0., 0.99 ) for: 1.0 not and 0 are within 99% of each other
|
1139
|
+
# Floating point matchers: double
|
1140
|
+
ok {test-number} - -0., WithinRel( 0. ) for: -0.0 and 0 are within 2.22045e-12% of each other
|
1141
|
+
# Floating point matchers: double
|
1142
|
+
ok {test-number} - v1, WithinRel( v2 ) for: 0.0 and 2.22507e-308 are within 2.22045e-12% of each other
|
1143
|
+
# Floating point matchers: double
|
1144
|
+
ok {test-number} - 1., WithinAbs( 1., 0 ) for: 1.0 is within 0.0 of 1.0
|
1145
|
+
# Floating point matchers: double
|
1146
|
+
ok {test-number} - 0., WithinAbs( 1., 1 ) for: 0.0 is within 1.0 of 1.0
|
1147
|
+
# Floating point matchers: double
|
1148
|
+
ok {test-number} - 0., !WithinAbs( 1., 0.99 ) for: 0.0 not is within 0.99 of 1.0
|
1149
|
+
# Floating point matchers: double
|
1150
|
+
ok {test-number} - 0., !WithinAbs( 1., 0.99 ) for: 0.0 not is within 0.99 of 1.0
|
1151
|
+
# Floating point matchers: double
|
1152
|
+
ok {test-number} - 11., !WithinAbs( 10., 0.5 ) for: 11.0 not is within 0.5 of 10.0
|
1153
|
+
# Floating point matchers: double
|
1154
|
+
ok {test-number} - 10., !WithinAbs( 11., 0.5 ) for: 10.0 not is within 0.5 of 11.0
|
1155
|
+
# Floating point matchers: double
|
1156
|
+
ok {test-number} - -10., WithinAbs( -10., 0.5 ) for: -10.0 is within 0.5 of -10.0
|
1157
|
+
# Floating point matchers: double
|
1158
|
+
ok {test-number} - -10., WithinAbs( -9.6, 0.5 ) for: -10.0 is within 0.5 of -9.6
|
1159
|
+
# Floating point matchers: double
|
1160
|
+
ok {test-number} - 1., WithinULP( 1., 0 ) for: 1.0 is within 0 ULPs of 1.0000000000000000e+00 ([1.0000000000000000e+00, 1.0000000000000000e+00])
|
1161
|
+
# Floating point matchers: double
|
1162
|
+
ok {test-number} - nextafter( 1., 2. ), WithinULP( 1., 1 ) for: 1.0 is within 1 ULPs of 1.0000000000000000e+00 ([9.9999999999999989e-01, 1.0000000000000002e+00])
|
1163
|
+
# Floating point matchers: double
|
1164
|
+
ok {test-number} - 0., WithinULP( nextafter( 0., 1. ), 1 ) for: 0.0 is within 1 ULPs of 4.9406564584124654e-324 ([0.0000000000000000e+00, 9.8813129168249309e-324])
|
1165
|
+
# Floating point matchers: double
|
1166
|
+
ok {test-number} - 1., WithinULP( nextafter( 1., 0. ), 1 ) for: 1.0 is within 1 ULPs of 9.9999999999999989e-01 ([9.9999999999999978e-01, 1.0000000000000000e+00])
|
1167
|
+
# Floating point matchers: double
|
1168
|
+
ok {test-number} - 1., !WithinULP( nextafter( 1., 2. ), 0 ) for: 1.0 not is within 0 ULPs of 1.0000000000000002e+00 ([1.0000000000000002e+00, 1.0000000000000002e+00])
|
1169
|
+
# Floating point matchers: double
|
1170
|
+
ok {test-number} - 1., WithinULP( 1., 0 ) for: 1.0 is within 0 ULPs of 1.0000000000000000e+00 ([1.0000000000000000e+00, 1.0000000000000000e+00])
|
1171
|
+
# Floating point matchers: double
|
1172
|
+
ok {test-number} - -0., WithinULP( 0., 0 ) for: -0.0 is within 0 ULPs of 0.0000000000000000e+00 ([0.0000000000000000e+00, 0.0000000000000000e+00])
|
1173
|
+
# Floating point matchers: double
|
1174
|
+
ok {test-number} - 1., WithinAbs( 1., 0.5 ) || WithinULP( 2., 1 ) for: 1.0 ( is within 0.5 of 1.0 or is within 1 ULPs of 2.0000000000000000e+00 ([1.9999999999999998e+00, 2.0000000000000004e+00]) )
|
1175
|
+
# Floating point matchers: double
|
1176
|
+
ok {test-number} - 1., WithinAbs( 2., 0.5 ) || WithinULP( 1., 0 ) for: 1.0 ( is within 0.5 of 2.0 or is within 0 ULPs of 1.0000000000000000e+00 ([1.0000000000000000e+00, 1.0000000000000000e+00]) )
|
1177
|
+
# Floating point matchers: double
|
1178
|
+
ok {test-number} - 0.0001, WithinAbs( 0., 0.001 ) || WithinRel( 0., 0.1 ) for: 0.0001 ( is within 0.001 of 0.0 or and 0 are within 10% of each other )
|
1179
|
+
# Floating point matchers: double
|
1180
|
+
ok {test-number} - WithinAbs( 1., 0. )
|
1181
|
+
# Floating point matchers: double
|
1182
|
+
ok {test-number} - WithinAbs( 1., -1. ), std::domain_error
|
1183
|
+
# Floating point matchers: double
|
1184
|
+
ok {test-number} - WithinULP( 1., 0 )
|
1185
|
+
# Floating point matchers: double
|
1186
|
+
ok {test-number} - WithinRel( 1., 0. )
|
1187
|
+
# Floating point matchers: double
|
1188
|
+
ok {test-number} - WithinRel( 1., -0.2 ), std::domain_error
|
1189
|
+
# Floating point matchers: double
|
1190
|
+
ok {test-number} - WithinRel( 1., 1. ), std::domain_error
|
1191
|
+
# Floating point matchers: double
|
1192
|
+
ok {test-number} - 1., !IsNaN() for: 1.0 not is NaN
|
1193
|
+
# Floating point matchers: float
|
1194
|
+
ok {test-number} - 10.f, WithinRel( 11.1f, 0.1f ) for: 10.0f and 11.1 are within 10% of each other
|
1195
|
+
# Floating point matchers: float
|
1196
|
+
ok {test-number} - 10.f, !WithinRel( 11.2f, 0.1f ) for: 10.0f not and 11.2 are within 10% of each other
|
1197
|
+
# Floating point matchers: float
|
1198
|
+
ok {test-number} - 1.f, !WithinRel( 0.f, 0.99f ) for: 1.0f not and 0 are within 99% of each other
|
1199
|
+
# Floating point matchers: float
|
1200
|
+
ok {test-number} - -0.f, WithinRel( 0.f ) for: -0.0f and 0 are within 0.00119209% of each other
|
1201
|
+
# Floating point matchers: float
|
1202
|
+
ok {test-number} - v1, WithinRel( v2 ) for: 0.0f and 1.17549e-38 are within 0.00119209% of each other
|
1203
|
+
# Floating point matchers: float
|
1204
|
+
ok {test-number} - 1.f, WithinAbs( 1.f, 0 ) for: 1.0f is within 0.0 of 1.0
|
1205
|
+
# Floating point matchers: float
|
1206
|
+
ok {test-number} - 0.f, WithinAbs( 1.f, 1 ) for: 0.0f is within 1.0 of 1.0
|
1207
|
+
# Floating point matchers: float
|
1208
|
+
ok {test-number} - 0.f, !WithinAbs( 1.f, 0.99f ) for: 0.0f not is within 0.9900000095 of 1.0
|
1209
|
+
# Floating point matchers: float
|
1210
|
+
ok {test-number} - 0.f, !WithinAbs( 1.f, 0.99f ) for: 0.0f not is within 0.9900000095 of 1.0
|
1211
|
+
# Floating point matchers: float
|
1212
|
+
ok {test-number} - 0.f, WithinAbs( -0.f, 0 ) for: 0.0f is within 0.0 of -0.0
|
1213
|
+
# Floating point matchers: float
|
1214
|
+
ok {test-number} - 11.f, !WithinAbs( 10.f, 0.5f ) for: 11.0f not is within 0.5 of 10.0
|
1215
|
+
# Floating point matchers: float
|
1216
|
+
ok {test-number} - 10.f, !WithinAbs( 11.f, 0.5f ) for: 10.0f not is within 0.5 of 11.0
|
1217
|
+
# Floating point matchers: float
|
1218
|
+
ok {test-number} - -10.f, WithinAbs( -10.f, 0.5f ) for: -10.0f is within 0.5 of -10.0
|
1219
|
+
# Floating point matchers: float
|
1220
|
+
ok {test-number} - -10.f, WithinAbs( -9.6f, 0.5f ) for: -10.0f is within 0.5 of -9.6000003815
|
1221
|
+
# Floating point matchers: float
|
1222
|
+
ok {test-number} - 1.f, WithinULP( 1.f, 0 ) for: 1.0f is within 0 ULPs of 1.00000000e+00f ([1.00000000e+00, 1.00000000e+00])
|
1223
|
+
# Floating point matchers: float
|
1224
|
+
ok {test-number} - -1.f, WithinULP( -1.f, 0 ) for: -1.0f is within 0 ULPs of -1.00000000e+00f ([-1.00000000e+00, -1.00000000e+00])
|
1225
|
+
# Floating point matchers: float
|
1226
|
+
ok {test-number} - nextafter( 1.f, 2.f ), WithinULP( 1.f, 1 ) for: 1.0f is within 1 ULPs of 1.00000000e+00f ([9.99999940e-01, 1.00000012e+00])
|
1227
|
+
# Floating point matchers: float
|
1228
|
+
ok {test-number} - 0.f, WithinULP( nextafter( 0.f, 1.f ), 1 ) for: 0.0f is within 1 ULPs of 1.40129846e-45f ([0.00000000e+00, 2.80259693e-45])
|
1229
|
+
# Floating point matchers: float
|
1230
|
+
ok {test-number} - 1.f, WithinULP( nextafter( 1.f, 0.f ), 1 ) for: 1.0f is within 1 ULPs of 9.99999940e-01f ([9.99999881e-01, 1.00000000e+00])
|
1231
|
+
# Floating point matchers: float
|
1232
|
+
ok {test-number} - 1.f, !WithinULP( nextafter( 1.f, 2.f ), 0 ) for: 1.0f not is within 0 ULPs of 1.00000012e+00f ([1.00000012e+00, 1.00000012e+00])
|
1233
|
+
# Floating point matchers: float
|
1234
|
+
ok {test-number} - 1.f, WithinULP( 1.f, 0 ) for: 1.0f is within 0 ULPs of 1.00000000e+00f ([1.00000000e+00, 1.00000000e+00])
|
1235
|
+
# Floating point matchers: float
|
1236
|
+
ok {test-number} - -0.f, WithinULP( 0.f, 0 ) for: -0.0f is within 0 ULPs of 0.00000000e+00f ([0.00000000e+00, 0.00000000e+00])
|
1237
|
+
# Floating point matchers: float
|
1238
|
+
ok {test-number} - 1.f, WithinAbs( 1.f, 0.5 ) || WithinULP( 1.f, 1 ) for: 1.0f ( is within 0.5 of 1.0 or is within 1 ULPs of 1.00000000e+00f ([9.99999940e-01, 1.00000012e+00]) )
|
1239
|
+
# Floating point matchers: float
|
1240
|
+
ok {test-number} - 1.f, WithinAbs( 2.f, 0.5 ) || WithinULP( 1.f, 0 ) for: 1.0f ( is within 0.5 of 2.0 or is within 0 ULPs of 1.00000000e+00f ([1.00000000e+00, 1.00000000e+00]) )
|
1241
|
+
# Floating point matchers: float
|
1242
|
+
ok {test-number} - 0.0001f, WithinAbs( 0.f, 0.001f ) || WithinRel( 0.f, 0.1f ) for: 0.0001f ( is within 0.001 of 0.0 or and 0 are within 10% of each other )
|
1243
|
+
# Floating point matchers: float
|
1244
|
+
ok {test-number} - WithinAbs( 1.f, 0.f )
|
1245
|
+
# Floating point matchers: float
|
1246
|
+
ok {test-number} - WithinAbs( 1.f, -1.f ), std::domain_error
|
1247
|
+
# Floating point matchers: float
|
1248
|
+
ok {test-number} - WithinULP( 1.f, 0 )
|
1249
|
+
# Floating point matchers: float
|
1250
|
+
ok {test-number} - WithinULP( 1.f, static_cast<uint64_t>( -1 ) ), std::domain_error
|
1251
|
+
# Floating point matchers: float
|
1252
|
+
ok {test-number} - WithinRel( 1.f, 0.f )
|
1253
|
+
# Floating point matchers: float
|
1254
|
+
ok {test-number} - WithinRel( 1.f, -0.2f ), std::domain_error
|
1255
|
+
# Floating point matchers: float
|
1256
|
+
ok {test-number} - WithinRel( 1.f, 1.f ), std::domain_error
|
1257
|
+
# Floating point matchers: float
|
1258
|
+
ok {test-number} - 1., !IsNaN() for: 1.0 not is NaN
|
1259
|
+
# Generators -- adapters
|
1260
|
+
ok {test-number} - i % 2 == 0 for: 0 == 0
|
1261
|
+
# Generators -- adapters
|
1262
|
+
ok {test-number} - i % 2 == 0 for: 0 == 0
|
1263
|
+
# Generators -- adapters
|
1264
|
+
ok {test-number} - i % 2 == 0 for: 0 == 0
|
1265
|
+
# Generators -- adapters
|
1266
|
+
ok {test-number} - filter([] (int) {return false; }, value(1)), Catch::GeneratorException
|
1267
|
+
# Generators -- adapters
|
1268
|
+
ok {test-number} - i < 4 for: 1 < 4
|
1269
|
+
# Generators -- adapters
|
1270
|
+
ok {test-number} - i < 4 for: 2 < 4
|
1271
|
+
# Generators -- adapters
|
1272
|
+
ok {test-number} - i < 4 for: 3 < 4
|
1273
|
+
# Generators -- adapters
|
1274
|
+
ok {test-number} - i % 2 == 0 for: 0 == 0
|
1275
|
+
# Generators -- adapters
|
1276
|
+
ok {test-number} - i % 2 == 0 for: 0 == 0
|
1277
|
+
# Generators -- adapters
|
1278
|
+
ok {test-number} - i % 2 == 0 for: 0 == 0
|
1279
|
+
# Generators -- adapters
|
1280
|
+
ok {test-number} - i.size() == 1 for: 1 == 1
|
1281
|
+
# Generators -- adapters
|
1282
|
+
ok {test-number} - i.size() == 1 for: 1 == 1
|
1283
|
+
# Generators -- adapters
|
1284
|
+
ok {test-number} - i.size() == 1 for: 1 == 1
|
1285
|
+
# Generators -- adapters
|
1286
|
+
ok {test-number} - i.size() == 1 for: 1 == 1
|
1287
|
+
# Generators -- adapters
|
1288
|
+
ok {test-number} - i.size() == 1 for: 1 == 1
|
1289
|
+
# Generators -- adapters
|
1290
|
+
ok {test-number} - i.size() == 1 for: 1 == 1
|
1291
|
+
# Generators -- adapters
|
1292
|
+
ok {test-number} - j > 0 for: 1 > 0
|
1293
|
+
# Generators -- adapters
|
1294
|
+
ok {test-number} - j > 0 for: 2 > 0
|
1295
|
+
# Generators -- adapters
|
1296
|
+
ok {test-number} - j > 0 for: 3 > 0
|
1297
|
+
# Generators -- adapters
|
1298
|
+
ok {test-number} - j > 0 for: 1 > 0
|
1299
|
+
# Generators -- adapters
|
1300
|
+
ok {test-number} - j > 0 for: 2 > 0
|
1301
|
+
# Generators -- adapters
|
1302
|
+
ok {test-number} - j > 0 for: 3 > 0
|
1303
|
+
# Generators -- adapters
|
1304
|
+
ok {test-number} - chunk2.size() == 2 for: 2 == 2
|
1305
|
+
# Generators -- adapters
|
1306
|
+
ok {test-number} - chunk2.front() == chunk2.back() for: 1 == 1
|
1307
|
+
# Generators -- adapters
|
1308
|
+
ok {test-number} - chunk2.size() == 2 for: 2 == 2
|
1309
|
+
# Generators -- adapters
|
1310
|
+
ok {test-number} - chunk2.front() == chunk2.back() for: 2 == 2
|
1311
|
+
# Generators -- adapters
|
1312
|
+
ok {test-number} - chunk2.size() == 2 for: 2 == 2
|
1313
|
+
# Generators -- adapters
|
1314
|
+
ok {test-number} - chunk2.front() == chunk2.back() for: 3 == 3
|
1315
|
+
# Generators -- adapters
|
1316
|
+
ok {test-number} - chunk2.size() == 2 for: 2 == 2
|
1317
|
+
# Generators -- adapters
|
1318
|
+
ok {test-number} - chunk2.front() == chunk2.back() for: 1 == 1
|
1319
|
+
# Generators -- adapters
|
1320
|
+
ok {test-number} - chunk2.front() < 3 for: 1 < 3
|
1321
|
+
# Generators -- adapters
|
1322
|
+
ok {test-number} - chunk2.size() == 2 for: 2 == 2
|
1323
|
+
# Generators -- adapters
|
1324
|
+
ok {test-number} - chunk2.front() == chunk2.back() for: 2 == 2
|
1325
|
+
# Generators -- adapters
|
1326
|
+
ok {test-number} - chunk2.front() < 3 for: 2 < 3
|
1327
|
+
# Generators -- adapters
|
1328
|
+
ok {test-number} - chunk2.size() == 0 for: 0 == 0
|
1329
|
+
# Generators -- adapters
|
1330
|
+
ok {test-number} - chunk2.size() == 0 for: 0 == 0
|
1331
|
+
# Generators -- adapters
|
1332
|
+
ok {test-number} - chunk2.size() == 0 for: 0 == 0
|
1333
|
+
# Generators -- adapters
|
1334
|
+
ok {test-number} - chunk(2, value(1)), Catch::GeneratorException
|
1335
|
+
# Generators -- simple
|
1336
|
+
ok {test-number} - j < i for: -3 < 1
|
1337
|
+
# Generators -- simple
|
1338
|
+
ok {test-number} - j < i for: -2 < 1
|
1339
|
+
# Generators -- simple
|
1340
|
+
ok {test-number} - j < i for: -1 < 1
|
1341
|
+
# Generators -- simple
|
1342
|
+
ok {test-number} - 4u * i > str.size() for: 4 > 1
|
1343
|
+
# Generators -- simple
|
1344
|
+
ok {test-number} - 4u * i > str.size() for: 4 > 2
|
1345
|
+
# Generators -- simple
|
1346
|
+
ok {test-number} - 4u * i > str.size() for: 4 > 3
|
1347
|
+
# Generators -- simple
|
1348
|
+
ok {test-number} - j < i for: -3 < 2
|
1349
|
+
# Generators -- simple
|
1350
|
+
ok {test-number} - j < i for: -2 < 2
|
1351
|
+
# Generators -- simple
|
1352
|
+
ok {test-number} - j < i for: -1 < 2
|
1353
|
+
# Generators -- simple
|
1354
|
+
ok {test-number} - 4u * i > str.size() for: 8 > 1
|
1355
|
+
# Generators -- simple
|
1356
|
+
ok {test-number} - 4u * i > str.size() for: 8 > 2
|
1357
|
+
# Generators -- simple
|
1358
|
+
ok {test-number} - 4u * i > str.size() for: 8 > 3
|
1359
|
+
# Generators -- simple
|
1360
|
+
ok {test-number} - j < i for: -3 < 3
|
1361
|
+
# Generators -- simple
|
1362
|
+
ok {test-number} - j < i for: -2 < 3
|
1363
|
+
# Generators -- simple
|
1364
|
+
ok {test-number} - j < i for: -1 < 3
|
1365
|
+
# Generators -- simple
|
1366
|
+
ok {test-number} - 4u * i > str.size() for: 12 > 1
|
1367
|
+
# Generators -- simple
|
1368
|
+
ok {test-number} - 4u * i > str.size() for: 12 > 2
|
1369
|
+
# Generators -- simple
|
1370
|
+
ok {test-number} - 4u * i > str.size() for: 12 > 3
|
1371
|
+
# Generators internals
|
1372
|
+
ok {test-number} - gen.get() == 123 for: 123 == 123
|
1373
|
+
# Generators internals
|
1374
|
+
ok {test-number} - !(gen.next()) for: !false
|
1375
|
+
# Generators internals
|
1376
|
+
ok {test-number} - gen.get() == 1 for: 1 == 1
|
1377
|
+
# Generators internals
|
1378
|
+
ok {test-number} - gen.next() for: true
|
1379
|
+
# Generators internals
|
1380
|
+
ok {test-number} - gen.get() == 3 for: 3 == 3
|
1381
|
+
# Generators internals
|
1382
|
+
ok {test-number} - gen.next() for: true
|
1383
|
+
# Generators internals
|
1384
|
+
ok {test-number} - gen.get() == 5 for: 5 == 5
|
1385
|
+
# Generators internals
|
1386
|
+
ok {test-number} - !(gen.next()) for: !false
|
1387
|
+
# Generators internals
|
1388
|
+
ok {test-number} - gen.get() == 1 for: 1 == 1
|
1389
|
+
# Generators internals
|
1390
|
+
ok {test-number} - gen.next() for: true
|
1391
|
+
# Generators internals
|
1392
|
+
ok {test-number} - gen.get() == 5 for: 5 == 5
|
1393
|
+
# Generators internals
|
1394
|
+
ok {test-number} - gen.next() for: true
|
1395
|
+
# Generators internals
|
1396
|
+
ok {test-number} - gen.get() == 2 for: 2 == 2
|
1397
|
+
# Generators internals
|
1398
|
+
ok {test-number} - gen.next() for: true
|
1399
|
+
# Generators internals
|
1400
|
+
ok {test-number} - gen.get() == 4 for: 4 == 4
|
1401
|
+
# Generators internals
|
1402
|
+
ok {test-number} - gen.next() for: true
|
1403
|
+
# Generators internals
|
1404
|
+
ok {test-number} - gen.get() == 0 for: 0 == 0
|
1405
|
+
# Generators internals
|
1406
|
+
ok {test-number} - !(gen.next()) for: !false
|
1407
|
+
# Generators internals
|
1408
|
+
ok {test-number} - gen.get().size() == 2 for: 2 == 2
|
1409
|
+
# Generators internals
|
1410
|
+
ok {test-number} - gen.get() == "aa" for: "aa" == "aa"
|
1411
|
+
# Generators internals
|
1412
|
+
ok {test-number} - gen.next() for: true
|
1413
|
+
# Generators internals
|
1414
|
+
ok {test-number} - gen.get() == "bb" for: "bb" == "bb"
|
1415
|
+
# Generators internals
|
1416
|
+
ok {test-number} - gen.next() for: true
|
1417
|
+
# Generators internals
|
1418
|
+
ok {test-number} - gen.get() == "cc" for: "cc" == "cc"
|
1419
|
+
# Generators internals
|
1420
|
+
ok {test-number} - !(gen.next()) for: !false
|
1421
|
+
# Generators internals
|
1422
|
+
ok {test-number} - gen.get() == 1 for: 1 == 1
|
1423
|
+
# Generators internals
|
1424
|
+
ok {test-number} - gen.next() for: true
|
1425
|
+
# Generators internals
|
1426
|
+
ok {test-number} - gen.get() == 3 for: 3 == 3
|
1427
|
+
# Generators internals
|
1428
|
+
ok {test-number} - !(gen.next()) for: !false
|
1429
|
+
# Generators internals
|
1430
|
+
ok {test-number} - gen.get() == 1 for: 1 == 1
|
1431
|
+
# Generators internals
|
1432
|
+
ok {test-number} - gen.next() for: true
|
1433
|
+
# Generators internals
|
1434
|
+
ok {test-number} - gen.get() == 3 for: 3 == 3
|
1435
|
+
# Generators internals
|
1436
|
+
ok {test-number} - !(gen.next()) for: !false
|
1437
|
+
# Generators internals
|
1438
|
+
ok {test-number} - filter([](int) { return false; }, value(1)), Catch::GeneratorException
|
1439
|
+
# Generators internals
|
1440
|
+
ok {test-number} - filter([](int) { return false; }, values({ 1, 2, 3 })), Catch::GeneratorException
|
1441
|
+
# Generators internals
|
1442
|
+
ok {test-number} - gen.get() == 1 for: 1 == 1
|
1443
|
+
# Generators internals
|
1444
|
+
ok {test-number} - gen.next() for: true
|
1445
|
+
# Generators internals
|
1446
|
+
ok {test-number} - gen.get() == 2 for: 2 == 2
|
1447
|
+
# Generators internals
|
1448
|
+
ok {test-number} - !(gen.next()) for: !false
|
1449
|
+
# Generators internals
|
1450
|
+
ok {test-number} - gen.get() == 1 for: 1 == 1
|
1451
|
+
# Generators internals
|
1452
|
+
ok {test-number} - !(gen.next()) for: !false
|
1453
|
+
# Generators internals
|
1454
|
+
ok {test-number} - gen.get() == 2.0 for: 2.0 == 2.0
|
1455
|
+
# Generators internals
|
1456
|
+
ok {test-number} - gen.next() for: true
|
1457
|
+
# Generators internals
|
1458
|
+
ok {test-number} - gen.get() == 4.0 for: 4.0 == 4.0
|
1459
|
+
# Generators internals
|
1460
|
+
ok {test-number} - gen.next() for: true
|
1461
|
+
# Generators internals
|
1462
|
+
ok {test-number} - gen.get() == 6.0 for: 6.0 == 6.0
|
1463
|
+
# Generators internals
|
1464
|
+
ok {test-number} - !(gen.next()) for: !false
|
1465
|
+
# Generators internals
|
1466
|
+
ok {test-number} - gen.get() == 2.0 for: 2.0 == 2.0
|
1467
|
+
# Generators internals
|
1468
|
+
ok {test-number} - gen.next() for: true
|
1469
|
+
# Generators internals
|
1470
|
+
ok {test-number} - gen.get() == 4.0 for: 4.0 == 4.0
|
1471
|
+
# Generators internals
|
1472
|
+
ok {test-number} - gen.next() for: true
|
1473
|
+
# Generators internals
|
1474
|
+
ok {test-number} - gen.get() == 6.0 for: 6.0 == 6.0
|
1475
|
+
# Generators internals
|
1476
|
+
ok {test-number} - !(gen.next()) for: !false
|
1477
|
+
# Generators internals
|
1478
|
+
ok {test-number} - gen.get() == 3 for: 3 == 3
|
1479
|
+
# Generators internals
|
1480
|
+
ok {test-number} - !(gen.next()) for: !false
|
1481
|
+
# Generators internals
|
1482
|
+
ok {test-number} - gen.get() == 1 for: 1 == 1
|
1483
|
+
# Generators internals
|
1484
|
+
ok {test-number} - gen.next() for: true
|
1485
|
+
# Generators internals
|
1486
|
+
ok {test-number} - gen.get() == 2 for: 2 == 2
|
1487
|
+
# Generators internals
|
1488
|
+
ok {test-number} - gen.next() for: true
|
1489
|
+
# Generators internals
|
1490
|
+
ok {test-number} - gen.get() == 3 for: 3 == 3
|
1491
|
+
# Generators internals
|
1492
|
+
ok {test-number} - gen.next() for: true
|
1493
|
+
# Generators internals
|
1494
|
+
ok {test-number} - gen.get() == 1 for: 1 == 1
|
1495
|
+
# Generators internals
|
1496
|
+
ok {test-number} - gen.next() for: true
|
1497
|
+
# Generators internals
|
1498
|
+
ok {test-number} - gen.get() == 2 for: 2 == 2
|
1499
|
+
# Generators internals
|
1500
|
+
ok {test-number} - gen.next() for: true
|
1501
|
+
# Generators internals
|
1502
|
+
ok {test-number} - gen.get() == 3 for: 3 == 3
|
1503
|
+
# Generators internals
|
1504
|
+
ok {test-number} - !(gen.next()) for: !false
|
1505
|
+
# Generators internals
|
1506
|
+
ok {test-number} - gen.get() == -2 for: -2 == -2
|
1507
|
+
# Generators internals
|
1508
|
+
ok {test-number} - gen.next() for: true
|
1509
|
+
# Generators internals
|
1510
|
+
ok {test-number} - gen.get() == -1 for: -1 == -1
|
1511
|
+
# Generators internals
|
1512
|
+
ok {test-number} - gen.next() for: true
|
1513
|
+
# Generators internals
|
1514
|
+
ok {test-number} - gen.get() == 0 for: 0 == 0
|
1515
|
+
# Generators internals
|
1516
|
+
ok {test-number} - gen.next() for: true
|
1517
|
+
# Generators internals
|
1518
|
+
ok {test-number} - gen.get() == 1 for: 1 == 1
|
1519
|
+
# Generators internals
|
1520
|
+
ok {test-number} - !(gen.next()) for: !false
|
1521
|
+
# Generators internals
|
1522
|
+
ok {test-number} - gen.get() == 2 for: 2 == 2
|
1523
|
+
# Generators internals
|
1524
|
+
ok {test-number} - gen.next() for: true
|
1525
|
+
# Generators internals
|
1526
|
+
ok {test-number} - gen.get() == 1 for: 1 == 1
|
1527
|
+
# Generators internals
|
1528
|
+
ok {test-number} - gen.next() for: true
|
1529
|
+
# Generators internals
|
1530
|
+
ok {test-number} - gen.get() == 0 for: 0 == 0
|
1531
|
+
# Generators internals
|
1532
|
+
ok {test-number} - gen.next() for: true
|
1533
|
+
# Generators internals
|
1534
|
+
ok {test-number} - gen.get() == -1 for: -1 == -1
|
1535
|
+
# Generators internals
|
1536
|
+
ok {test-number} - !(gen.next()) for: !false
|
1537
|
+
# Generators internals
|
1538
|
+
ok {test-number} - gen.get() == -7 for: -7 == -7
|
1539
|
+
# Generators internals
|
1540
|
+
ok {test-number} - gen.next() for: true
|
1541
|
+
# Generators internals
|
1542
|
+
ok {test-number} - gen.get() == -4 for: -4 == -4
|
1543
|
+
# Generators internals
|
1544
|
+
ok {test-number} - gen.next() for: true
|
1545
|
+
# Generators internals
|
1546
|
+
ok {test-number} - gen.get() == -1 for: -1 == -1
|
1547
|
+
# Generators internals
|
1548
|
+
ok {test-number} - gen.next() for: true
|
1549
|
+
# Generators internals
|
1550
|
+
ok {test-number} - gen.get() == 2 for: 2 == 2
|
1551
|
+
# Generators internals
|
1552
|
+
ok {test-number} - !(gen.next()) for: !false
|
1553
|
+
# Generators internals
|
1554
|
+
ok {test-number} - gen.get() == -7 for: -7 == -7
|
1555
|
+
# Generators internals
|
1556
|
+
ok {test-number} - gen.next() for: true
|
1557
|
+
# Generators internals
|
1558
|
+
ok {test-number} - gen.get() == -4 for: -4 == -4
|
1559
|
+
# Generators internals
|
1560
|
+
ok {test-number} - gen.next() for: true
|
1561
|
+
# Generators internals
|
1562
|
+
ok {test-number} - gen.get() == -1 for: -1 == -1
|
1563
|
+
# Generators internals
|
1564
|
+
ok {test-number} - gen.next() for: true
|
1565
|
+
# Generators internals
|
1566
|
+
ok {test-number} - gen.get() == 2 for: 2 == 2
|
1567
|
+
# Generators internals
|
1568
|
+
ok {test-number} - !(gen.next()) for: !false
|
1569
|
+
# Generators internals
|
1570
|
+
ok {test-number} - gen.get() == -7 for: -7 == -7
|
1571
|
+
# Generators internals
|
1572
|
+
ok {test-number} - gen.next() for: true
|
1573
|
+
# Generators internals
|
1574
|
+
ok {test-number} - gen.get() == -4 for: -4 == -4
|
1575
|
+
# Generators internals
|
1576
|
+
ok {test-number} - gen.next() for: true
|
1577
|
+
# Generators internals
|
1578
|
+
ok {test-number} - gen.get() == -1 for: -1 == -1
|
1579
|
+
# Generators internals
|
1580
|
+
ok {test-number} - gen.next() for: true
|
1581
|
+
# Generators internals
|
1582
|
+
ok {test-number} - gen.get() == 2 for: 2 == 2
|
1583
|
+
# Generators internals
|
1584
|
+
ok {test-number} - gen.next() for: true
|
1585
|
+
# Generators internals
|
1586
|
+
ok {test-number} - gen.get() == 5 for: 5 == 5
|
1587
|
+
# Generators internals
|
1588
|
+
ok {test-number} - !(gen.next()) for: !false
|
1589
|
+
# Generators internals
|
1590
|
+
ok {test-number} - gen.get() == Approx(expected) for: -1.0 == Approx( -1.0 ) with 1 message: 'Current expected value is -1'
|
1591
|
+
# Generators internals
|
1592
|
+
ok {test-number} - gen.next() for: true with 1 message: 'Current expected value is -1'
|
1593
|
+
# Generators internals
|
1594
|
+
ok {test-number} - gen.get() == Approx(expected) for: -0.9 == Approx( -0.9 ) with 1 message: 'Current expected value is -0.9'
|
1595
|
+
# Generators internals
|
1596
|
+
ok {test-number} - gen.next() for: true with 1 message: 'Current expected value is -0.9'
|
1597
|
+
# Generators internals
|
1598
|
+
ok {test-number} - gen.get() == Approx(expected) for: -0.8 == Approx( -0.8 ) with 1 message: 'Current expected value is -0.8'
|
1599
|
+
# Generators internals
|
1600
|
+
ok {test-number} - gen.next() for: true with 1 message: 'Current expected value is -0.8'
|
1601
|
+
# Generators internals
|
1602
|
+
ok {test-number} - gen.get() == Approx(expected) for: -0.7 == Approx( -0.7 ) with 1 message: 'Current expected value is -0.7'
|
1603
|
+
# Generators internals
|
1604
|
+
ok {test-number} - gen.next() for: true with 1 message: 'Current expected value is -0.7'
|
1605
|
+
# Generators internals
|
1606
|
+
ok {test-number} - gen.get() == Approx(expected) for: -0.6 == Approx( -0.6 ) with 1 message: 'Current expected value is -0.6'
|
1607
|
+
# Generators internals
|
1608
|
+
ok {test-number} - gen.next() for: true with 1 message: 'Current expected value is -0.6'
|
1609
|
+
# Generators internals
|
1610
|
+
ok {test-number} - gen.get() == Approx(expected) for: -0.5 == Approx( -0.5 ) with 1 message: 'Current expected value is -0.5'
|
1611
|
+
# Generators internals
|
1612
|
+
ok {test-number} - gen.next() for: true with 1 message: 'Current expected value is -0.5'
|
1613
|
+
# Generators internals
|
1614
|
+
ok {test-number} - gen.get() == Approx(expected) for: -0.4 == Approx( -0.4 ) with 1 message: 'Current expected value is -0.4'
|
1615
|
+
# Generators internals
|
1616
|
+
ok {test-number} - gen.next() for: true with 1 message: 'Current expected value is -0.4'
|
1617
|
+
# Generators internals
|
1618
|
+
ok {test-number} - gen.get() == Approx(expected) for: -0.3 == Approx( -0.3 ) with 1 message: 'Current expected value is -0.3'
|
1619
|
+
# Generators internals
|
1620
|
+
ok {test-number} - gen.next() for: true with 1 message: 'Current expected value is -0.3'
|
1621
|
+
# Generators internals
|
1622
|
+
ok {test-number} - gen.get() == Approx(expected) for: -0.2 == Approx( -0.2 ) with 1 message: 'Current expected value is -0.2'
|
1623
|
+
# Generators internals
|
1624
|
+
ok {test-number} - gen.next() for: true with 1 message: 'Current expected value is -0.2'
|
1625
|
+
# Generators internals
|
1626
|
+
ok {test-number} - gen.get() == Approx(expected) for: -0.1 == Approx( -0.1 ) with 1 message: 'Current expected value is -0.1'
|
1627
|
+
# Generators internals
|
1628
|
+
ok {test-number} - gen.next() for: true with 1 message: 'Current expected value is -0.1'
|
1629
|
+
# Generators internals
|
1630
|
+
ok {test-number} - gen.get() == Approx(expected) for: -0.0 == Approx( -0.0 ) with 1 message: 'Current expected value is -1.38778e-16'
|
1631
|
+
# Generators internals
|
1632
|
+
ok {test-number} - gen.next() for: true with 1 message: 'Current expected value is -1.38778e-16'
|
1633
|
+
# Generators internals
|
1634
|
+
ok {test-number} - gen.get() == Approx(expected) for: 0.1 == Approx( 0.1 ) with 1 message: 'Current expected value is 0.1'
|
1635
|
+
# Generators internals
|
1636
|
+
ok {test-number} - gen.next() for: true with 1 message: 'Current expected value is 0.1'
|
1637
|
+
# Generators internals
|
1638
|
+
ok {test-number} - gen.get() == Approx(expected) for: 0.2 == Approx( 0.2 ) with 1 message: 'Current expected value is 0.2'
|
1639
|
+
# Generators internals
|
1640
|
+
ok {test-number} - gen.next() for: true with 1 message: 'Current expected value is 0.2'
|
1641
|
+
# Generators internals
|
1642
|
+
ok {test-number} - gen.get() == Approx(expected) for: 0.3 == Approx( 0.3 ) with 1 message: 'Current expected value is 0.3'
|
1643
|
+
# Generators internals
|
1644
|
+
ok {test-number} - gen.next() for: true with 1 message: 'Current expected value is 0.3'
|
1645
|
+
# Generators internals
|
1646
|
+
ok {test-number} - gen.get() == Approx(expected) for: 0.4 == Approx( 0.4 ) with 1 message: 'Current expected value is 0.4'
|
1647
|
+
# Generators internals
|
1648
|
+
ok {test-number} - gen.next() for: true with 1 message: 'Current expected value is 0.4'
|
1649
|
+
# Generators internals
|
1650
|
+
ok {test-number} - gen.get() == Approx(expected) for: 0.5 == Approx( 0.5 ) with 1 message: 'Current expected value is 0.5'
|
1651
|
+
# Generators internals
|
1652
|
+
ok {test-number} - gen.next() for: true with 1 message: 'Current expected value is 0.5'
|
1653
|
+
# Generators internals
|
1654
|
+
ok {test-number} - gen.get() == Approx(expected) for: 0.6 == Approx( 0.6 ) with 1 message: 'Current expected value is 0.6'
|
1655
|
+
# Generators internals
|
1656
|
+
ok {test-number} - gen.next() for: true with 1 message: 'Current expected value is 0.6'
|
1657
|
+
# Generators internals
|
1658
|
+
ok {test-number} - gen.get() == Approx(expected) for: 0.7 == Approx( 0.7 ) with 1 message: 'Current expected value is 0.7'
|
1659
|
+
# Generators internals
|
1660
|
+
ok {test-number} - gen.next() for: true with 1 message: 'Current expected value is 0.7'
|
1661
|
+
# Generators internals
|
1662
|
+
ok {test-number} - gen.get() == Approx(expected) for: 0.8 == Approx( 0.8 ) with 1 message: 'Current expected value is 0.8'
|
1663
|
+
# Generators internals
|
1664
|
+
ok {test-number} - gen.next() for: true with 1 message: 'Current expected value is 0.8'
|
1665
|
+
# Generators internals
|
1666
|
+
ok {test-number} - gen.get() == Approx(expected) for: 0.9 == Approx( 0.9 ) with 1 message: 'Current expected value is 0.9'
|
1667
|
+
# Generators internals
|
1668
|
+
ok {test-number} - gen.next() for: true with 1 message: 'Current expected value is 0.9'
|
1669
|
+
# Generators internals
|
1670
|
+
ok {test-number} - gen.get() == Approx( rangeEnd ) for: 1.0 == Approx( 1.0 )
|
1671
|
+
# Generators internals
|
1672
|
+
ok {test-number} - !(gen.next()) for: !false
|
1673
|
+
# Generators internals
|
1674
|
+
ok {test-number} - gen.get() == Approx(expected) for: -1.0 == Approx( -1.0 ) with 1 message: 'Current expected value is -1'
|
1675
|
+
# Generators internals
|
1676
|
+
ok {test-number} - gen.next() for: true with 1 message: 'Current expected value is -1'
|
1677
|
+
# Generators internals
|
1678
|
+
ok {test-number} - gen.get() == Approx(expected) for: -0.7 == Approx( -0.7 ) with 1 message: 'Current expected value is -0.7'
|
1679
|
+
# Generators internals
|
1680
|
+
ok {test-number} - gen.next() for: true with 1 message: 'Current expected value is -0.7'
|
1681
|
+
# Generators internals
|
1682
|
+
ok {test-number} - gen.get() == Approx(expected) for: -0.4 == Approx( -0.4 ) with 1 message: 'Current expected value is -0.4'
|
1683
|
+
# Generators internals
|
1684
|
+
ok {test-number} - gen.next() for: true with 1 message: 'Current expected value is -0.4'
|
1685
|
+
# Generators internals
|
1686
|
+
ok {test-number} - gen.get() == Approx(expected) for: -0.1 == Approx( -0.1 ) with 1 message: 'Current expected value is -0.1'
|
1687
|
+
# Generators internals
|
1688
|
+
ok {test-number} - gen.next() for: true with 1 message: 'Current expected value is -0.1'
|
1689
|
+
# Generators internals
|
1690
|
+
ok {test-number} - gen.get() == Approx(expected) for: 0.2 == Approx( 0.2 ) with 1 message: 'Current expected value is 0.2'
|
1691
|
+
# Generators internals
|
1692
|
+
ok {test-number} - gen.next() for: true with 1 message: 'Current expected value is 0.2'
|
1693
|
+
# Generators internals
|
1694
|
+
ok {test-number} - gen.get() == Approx(expected) for: 0.5 == Approx( 0.5 ) with 1 message: 'Current expected value is 0.5'
|
1695
|
+
# Generators internals
|
1696
|
+
ok {test-number} - gen.next() for: true with 1 message: 'Current expected value is 0.5'
|
1697
|
+
# Generators internals
|
1698
|
+
ok {test-number} - !(gen.next()) for: !false
|
1699
|
+
# Generators internals
|
1700
|
+
ok {test-number} - gen.get() == Approx(expected) for: -1.0 == Approx( -1.0 ) with 1 message: 'Current expected value is -1'
|
1701
|
+
# Generators internals
|
1702
|
+
ok {test-number} - gen.next() for: true with 1 message: 'Current expected value is -1'
|
1703
|
+
# Generators internals
|
1704
|
+
ok {test-number} - gen.get() == Approx(expected) for: -0.7 == Approx( -0.7 ) with 1 message: 'Current expected value is -0.7'
|
1705
|
+
# Generators internals
|
1706
|
+
ok {test-number} - gen.next() for: true with 1 message: 'Current expected value is -0.7'
|
1707
|
+
# Generators internals
|
1708
|
+
ok {test-number} - gen.get() == Approx(expected) for: -0.4 == Approx( -0.4 ) with 1 message: 'Current expected value is -0.4'
|
1709
|
+
# Generators internals
|
1710
|
+
ok {test-number} - gen.next() for: true with 1 message: 'Current expected value is -0.4'
|
1711
|
+
# Generators internals
|
1712
|
+
ok {test-number} - gen.get() == Approx(expected) for: -0.1 == Approx( -0.1 ) with 1 message: 'Current expected value is -0.1'
|
1713
|
+
# Generators internals
|
1714
|
+
ok {test-number} - gen.next() for: true with 1 message: 'Current expected value is -0.1'
|
1715
|
+
# Generators internals
|
1716
|
+
ok {test-number} - gen.get() == Approx(expected) for: 0.2 == Approx( 0.2 ) with 1 message: 'Current expected value is 0.2'
|
1717
|
+
# Generators internals
|
1718
|
+
ok {test-number} - gen.next() for: true with 1 message: 'Current expected value is 0.2'
|
1719
|
+
# Generators internals
|
1720
|
+
ok {test-number} - gen.get() == Approx(expected) for: 0.5 == Approx( 0.5 ) with 1 message: 'Current expected value is 0.5'
|
1721
|
+
# Generators internals
|
1722
|
+
ok {test-number} - gen.next() for: true with 1 message: 'Current expected value is 0.5'
|
1723
|
+
# Generators internals
|
1724
|
+
ok {test-number} - !(gen.next()) for: !false
|
1725
|
+
# Generators internals
|
1726
|
+
ok {test-number} - gen.get() == 5 for: 5 == 5
|
1727
|
+
# Generators internals
|
1728
|
+
ok {test-number} - gen.next() for: true
|
1729
|
+
# Generators internals
|
1730
|
+
ok {test-number} - gen.get() == 2 for: 2 == 2
|
1731
|
+
# Generators internals
|
1732
|
+
ok {test-number} - gen.next() for: true
|
1733
|
+
# Generators internals
|
1734
|
+
ok {test-number} - gen.get() == -1 for: -1 == -1
|
1735
|
+
# Generators internals
|
1736
|
+
ok {test-number} - gen.next() for: true
|
1737
|
+
# Generators internals
|
1738
|
+
ok {test-number} - gen.get() == -4 for: -4 == -4
|
1739
|
+
# Generators internals
|
1740
|
+
ok {test-number} - !(gen.next()) for: !false
|
1741
|
+
# Generators internals
|
1742
|
+
ok {test-number} - gen.get() == 5 for: 5 == 5
|
1743
|
+
# Generators internals
|
1744
|
+
ok {test-number} - gen.next() for: true
|
1745
|
+
# Generators internals
|
1746
|
+
ok {test-number} - gen.get() == 2 for: 2 == 2
|
1747
|
+
# Generators internals
|
1748
|
+
ok {test-number} - gen.next() for: true
|
1749
|
+
# Generators internals
|
1750
|
+
ok {test-number} - gen.get() == -1 for: -1 == -1
|
1751
|
+
# Generators internals
|
1752
|
+
ok {test-number} - gen.next() for: true
|
1753
|
+
# Generators internals
|
1754
|
+
ok {test-number} - gen.get() == -4 for: -4 == -4
|
1755
|
+
# Generators internals
|
1756
|
+
ok {test-number} - !(gen.next()) for: !false
|
1757
|
+
# Generators internals
|
1758
|
+
ok {test-number} - gen.get() == 5 for: 5 == 5
|
1759
|
+
# Generators internals
|
1760
|
+
ok {test-number} - gen.next() for: true
|
1761
|
+
# Generators internals
|
1762
|
+
ok {test-number} - gen.get() == 2 for: 2 == 2
|
1763
|
+
# Generators internals
|
1764
|
+
ok {test-number} - gen.next() for: true
|
1765
|
+
# Generators internals
|
1766
|
+
ok {test-number} - gen.get() == -1 for: -1 == -1
|
1767
|
+
# Generators internals
|
1768
|
+
ok {test-number} - gen.next() for: true
|
1769
|
+
# Generators internals
|
1770
|
+
ok {test-number} - gen.get() == -4 for: -4 == -4
|
1771
|
+
# Generators internals
|
1772
|
+
ok {test-number} - gen.next() for: true
|
1773
|
+
# Generators internals
|
1774
|
+
ok {test-number} - gen.get() == -7 for: -7 == -7
|
1775
|
+
# Generators internals
|
1776
|
+
ok {test-number} - !(gen.next()) for: !false
|
1777
|
+
# Greater-than inequalities with different epsilons
|
1778
|
+
ok {test-number} - d >= Approx( 1.22 ) for: 1.23 >= Approx( 1.22 )
|
1779
|
+
# Greater-than inequalities with different epsilons
|
1780
|
+
ok {test-number} - d >= Approx( 1.23 ) for: 1.23 >= Approx( 1.23 )
|
1781
|
+
# Greater-than inequalities with different epsilons
|
1782
|
+
ok {test-number} - !(d >= Approx( 1.24 )) for: !(1.23 >= Approx( 1.24 ))
|
1783
|
+
# Greater-than inequalities with different epsilons
|
1784
|
+
ok {test-number} - d >= Approx( 1.24 ).epsilon(0.1) for: 1.23 >= Approx( 1.24 )
|
1785
|
+
# Hashers with different seed produce different hash with same test case
|
1786
|
+
ok {test-number} - h1( dummy ) != h2( dummy ) for: 3422778688 (0x<hex digits>) != 130711275 (0x<hex digits>)
|
1787
|
+
# Hashers with same seed produce same hash
|
1788
|
+
ok {test-number} - h1( dummy ) == h2( dummy ) for: 3422778688 (0x<hex digits>) == 3422778688 (0x<hex digits>)
|
1789
|
+
# Hashing different test cases produces different result
|
1790
|
+
ok {test-number} - h( dummy1 ) != h( dummy2 ) for: 2903002874 (0x<hex digits>) != 2668622104 (0x<hex digits>)
|
1791
|
+
# Hashing different test cases produces different result
|
1792
|
+
ok {test-number} - h( dummy1 ) != h( dummy2 ) for: 2673152918 (0x<hex digits>) != 3916075712 (0x<hex digits>)
|
1793
|
+
# Hashing different test cases produces different result
|
1794
|
+
ok {test-number} - h( dummy1 ) != h( dummy2 ) for: 2074929312 (0x<hex digits>) != 3429949824 (0x<hex digits>)
|
1795
|
+
# Hashing test case produces same hash across multiple calls
|
1796
|
+
ok {test-number} - h( dummy ) == h( dummy ) for: 3422778688 (0x<hex digits>) == 3422778688 (0x<hex digits>)
|
1797
|
+
# INFO and WARN do not abort tests
|
1798
|
+
warning {test-number} - 'this is a message' with 1 message: 'this is a warning'
|
1799
|
+
# INFO gets logged on failure
|
1800
|
+
not ok {test-number} - a == 1 for: 2 == 1 with 2 messages: 'this message should be logged' and 'so should this'
|
1801
|
+
# INFO gets logged on failure, even if captured before successful assertions
|
1802
|
+
ok {test-number} - a == 2 for: 2 == 2 with 1 message: 'this message may be logged later'
|
1803
|
+
# INFO gets logged on failure, even if captured before successful assertions
|
1804
|
+
not ok {test-number} - a == 1 for: 2 == 1 with 2 messages: 'this message may be logged later' and 'this message should be logged'
|
1805
|
+
# INFO gets logged on failure, even if captured before successful assertions
|
1806
|
+
not ok {test-number} - a == 0 for: 2 == 0 with 3 messages: 'this message may be logged later' and 'this message should be logged' and 'and this, but later'
|
1807
|
+
# INFO gets logged on failure, even if captured before successful assertions
|
1808
|
+
ok {test-number} - a == 2 for: 2 == 2 with 4 messages: 'this message may be logged later' and 'this message should be logged' and 'and this, but later' and 'but not this'
|
1809
|
+
# INFO is reset for each loop
|
1810
|
+
ok {test-number} - i < 10 for: 0 < 10 with 2 messages: 'current counter 0' and 'i := 0'
|
1811
|
+
# INFO is reset for each loop
|
1812
|
+
ok {test-number} - i < 10 for: 1 < 10 with 2 messages: 'current counter 1' and 'i := 1'
|
1813
|
+
# INFO is reset for each loop
|
1814
|
+
ok {test-number} - i < 10 for: 2 < 10 with 2 messages: 'current counter 2' and 'i := 2'
|
1815
|
+
# INFO is reset for each loop
|
1816
|
+
ok {test-number} - i < 10 for: 3 < 10 with 2 messages: 'current counter 3' and 'i := 3'
|
1817
|
+
# INFO is reset for each loop
|
1818
|
+
ok {test-number} - i < 10 for: 4 < 10 with 2 messages: 'current counter 4' and 'i := 4'
|
1819
|
+
# INFO is reset for each loop
|
1820
|
+
ok {test-number} - i < 10 for: 5 < 10 with 2 messages: 'current counter 5' and 'i := 5'
|
1821
|
+
# INFO is reset for each loop
|
1822
|
+
ok {test-number} - i < 10 for: 6 < 10 with 2 messages: 'current counter 6' and 'i := 6'
|
1823
|
+
# INFO is reset for each loop
|
1824
|
+
ok {test-number} - i < 10 for: 7 < 10 with 2 messages: 'current counter 7' and 'i := 7'
|
1825
|
+
# INFO is reset for each loop
|
1826
|
+
ok {test-number} - i < 10 for: 8 < 10 with 2 messages: 'current counter 8' and 'i := 8'
|
1827
|
+
# INFO is reset for each loop
|
1828
|
+
ok {test-number} - i < 10 for: 9 < 10 with 2 messages: 'current counter 9' and 'i := 9'
|
1829
|
+
# INFO is reset for each loop
|
1830
|
+
not ok {test-number} - i < 10 for: 10 < 10 with 2 messages: 'current counter 10' and 'i := 10'
|
1831
|
+
# Inequality checks that should fail
|
1832
|
+
not ok {test-number} - data.int_seven != 7 for: 7 != 7
|
1833
|
+
# Inequality checks that should fail
|
1834
|
+
not ok {test-number} - data.float_nine_point_one != Approx( 9.1f ) for: 9.1f != Approx( 9.1000003815 )
|
1835
|
+
# Inequality checks that should fail
|
1836
|
+
not ok {test-number} - data.double_pi != Approx( 3.1415926535 ) for: 3.1415926535 != Approx( 3.1415926535 )
|
1837
|
+
# Inequality checks that should fail
|
1838
|
+
not ok {test-number} - data.str_hello != "hello" for: "hello" != "hello"
|
1839
|
+
# Inequality checks that should fail
|
1840
|
+
not ok {test-number} - data.str_hello.size() != 5 for: 5 != 5
|
1841
|
+
# Inequality checks that should succeed
|
1842
|
+
ok {test-number} - data.int_seven != 6 for: 7 != 6
|
1843
|
+
# Inequality checks that should succeed
|
1844
|
+
ok {test-number} - data.int_seven != 8 for: 7 != 8
|
1845
|
+
# Inequality checks that should succeed
|
1846
|
+
ok {test-number} - data.float_nine_point_one != Approx( 9.11f ) for: 9.1f != Approx( 9.1099996567 )
|
1847
|
+
# Inequality checks that should succeed
|
1848
|
+
ok {test-number} - data.float_nine_point_one != Approx( 9.0f ) for: 9.1f != Approx( 9.0 )
|
1849
|
+
# Inequality checks that should succeed
|
1850
|
+
ok {test-number} - data.float_nine_point_one != Approx( 1 ) for: 9.1f != Approx( 1.0 )
|
1851
|
+
# Inequality checks that should succeed
|
1852
|
+
ok {test-number} - data.float_nine_point_one != Approx( 0 ) for: 9.1f != Approx( 0.0 )
|
1853
|
+
# Inequality checks that should succeed
|
1854
|
+
ok {test-number} - data.double_pi != Approx( 3.1415 ) for: 3.1415926535 != Approx( 3.1415 )
|
1855
|
+
# Inequality checks that should succeed
|
1856
|
+
ok {test-number} - data.str_hello != "goodbye" for: "hello" != "goodbye"
|
1857
|
+
# Inequality checks that should succeed
|
1858
|
+
ok {test-number} - data.str_hello != "hell" for: "hello" != "hell"
|
1859
|
+
# Inequality checks that should succeed
|
1860
|
+
ok {test-number} - data.str_hello != "hello1" for: "hello" != "hello1"
|
1861
|
+
# Inequality checks that should succeed
|
1862
|
+
ok {test-number} - data.str_hello.size() != 6 for: 5 != 6
|
1863
|
+
# Lambdas in assertions
|
1864
|
+
ok {test-number} - []() { return true; }() for: true
|
1865
|
+
# Less-than inequalities with different epsilons
|
1866
|
+
ok {test-number} - d <= Approx( 1.24 ) for: 1.23 <= Approx( 1.24 )
|
1867
|
+
# Less-than inequalities with different epsilons
|
1868
|
+
ok {test-number} - d <= Approx( 1.23 ) for: 1.23 <= Approx( 1.23 )
|
1869
|
+
# Less-than inequalities with different epsilons
|
1870
|
+
ok {test-number} - !(d <= Approx( 1.22 )) for: !(1.23 <= Approx( 1.22 ))
|
1871
|
+
# Less-than inequalities with different epsilons
|
1872
|
+
ok {test-number} - d <= Approx( 1.22 ).epsilon(0.1) for: 1.23 <= Approx( 1.22 )
|
1873
|
+
# ManuallyRegistered
|
1874
|
+
ok {test-number} - with 1 message: 'was called'
|
1875
|
+
# Matchers can be (AllOf) composed with the && operator
|
1876
|
+
ok {test-number} - testStringForMatching(), ContainsSubstring( "string" ) && ContainsSubstring( "abc" ) && ContainsSubstring( "substring" ) && ContainsSubstring( "contains" ) for: "this string contains 'abc' as a substring" ( contains: "string" and contains: "abc" and contains: "substring" and contains: "contains" )
|
1877
|
+
# Matchers can be (AnyOf) composed with the || operator
|
1878
|
+
ok {test-number} - testStringForMatching(), ContainsSubstring( "string" ) || ContainsSubstring( "different" ) || ContainsSubstring( "random" ) for: "this string contains 'abc' as a substring" ( contains: "string" or contains: "different" or contains: "random" )
|
1879
|
+
# Matchers can be (AnyOf) composed with the || operator
|
1880
|
+
ok {test-number} - testStringForMatching2(), ContainsSubstring( "string" ) || ContainsSubstring( "different" ) || ContainsSubstring( "random" ) for: "some completely different text that contains one common word" ( contains: "string" or contains: "different" or contains: "random" )
|
1881
|
+
# Matchers can be composed with both && and ||
|
1882
|
+
ok {test-number} - testStringForMatching(), ( ContainsSubstring( "string" ) || ContainsSubstring( "different" ) ) && ContainsSubstring( "substring" ) for: "this string contains 'abc' as a substring" ( ( contains: "string" or contains: "different" ) and contains: "substring" )
|
1883
|
+
# Matchers can be composed with both && and || - failing
|
1884
|
+
not ok {test-number} - testStringForMatching(), ( ContainsSubstring( "string" ) || ContainsSubstring( "different" ) ) && ContainsSubstring( "random" ) for: "this string contains 'abc' as a substring" ( ( contains: "string" or contains: "different" ) and contains: "random" )
|
1885
|
+
# Matchers can be negated (Not) with the ! operator
|
1886
|
+
ok {test-number} - testStringForMatching(), !ContainsSubstring( "different" ) for: "this string contains 'abc' as a substring" not contains: "different"
|
1887
|
+
# Matchers can be negated (Not) with the ! operator - failing
|
1888
|
+
not ok {test-number} - testStringForMatching(), !ContainsSubstring( "substring" ) for: "this string contains 'abc' as a substring" not contains: "substring"
|
1889
|
+
# Mayfail test case with nested sections
|
1890
|
+
not ok {test-number} - explicitly
|
1891
|
+
# Mayfail test case with nested sections
|
1892
|
+
not ok {test-number} - explicitly
|
1893
|
+
# Mayfail test case with nested sections
|
1894
|
+
not ok {test-number} - explicitly
|
1895
|
+
# Mayfail test case with nested sections
|
1896
|
+
not ok {test-number} - explicitly
|
1897
|
+
# Mismatching exception messages failing the test
|
1898
|
+
ok {test-number} - thisThrows(), "expected exception" for: "expected exception" equals: "expected exception"
|
1899
|
+
# Mismatching exception messages failing the test
|
1900
|
+
not ok {test-number} - thisThrows(), "should fail" for: "expected exception" equals: "should fail"
|
1901
|
+
# Multireporter calls reporters and listeners in correct order
|
1902
|
+
ok {test-number} - records == expected for: { "Hello", "world", "Goodbye", "world" } == { "Hello", "world", "Goodbye", "world" }
|
1903
|
+
# Multireporter updates ReporterPreferences properly
|
1904
|
+
ok {test-number} - multiReporter.getPreferences().shouldRedirectStdOut == false for: false == false
|
1905
|
+
# Multireporter updates ReporterPreferences properly
|
1906
|
+
ok {test-number} - multiReporter.getPreferences().shouldReportAllAssertions == false for: false == false
|
1907
|
+
# Multireporter updates ReporterPreferences properly
|
1908
|
+
ok {test-number} - multiReporter.getPreferences().shouldRedirectStdOut == true for: true == true
|
1909
|
+
# Multireporter updates ReporterPreferences properly
|
1910
|
+
ok {test-number} - multiReporter.getPreferences().shouldReportAllAssertions == false for: false == false
|
1911
|
+
# Multireporter updates ReporterPreferences properly
|
1912
|
+
ok {test-number} - multiReporter.getPreferences().shouldRedirectStdOut == true for: true == true
|
1913
|
+
# Multireporter updates ReporterPreferences properly
|
1914
|
+
ok {test-number} - multiReporter.getPreferences().shouldReportAllAssertions == true for: true == true
|
1915
|
+
# Multireporter updates ReporterPreferences properly
|
1916
|
+
ok {test-number} - multiReporter.getPreferences().shouldRedirectStdOut == true for: true == true
|
1917
|
+
# Multireporter updates ReporterPreferences properly
|
1918
|
+
ok {test-number} - multiReporter.getPreferences().shouldReportAllAssertions == true for: true == true
|
1919
|
+
# Multireporter updates ReporterPreferences properly
|
1920
|
+
ok {test-number} - multiReporter.getPreferences().shouldRedirectStdOut == false for: false == false
|
1921
|
+
# Multireporter updates ReporterPreferences properly
|
1922
|
+
ok {test-number} - multiReporter.getPreferences().shouldReportAllAssertions == false for: false == false
|
1923
|
+
# Multireporter updates ReporterPreferences properly
|
1924
|
+
ok {test-number} - multiReporter.getPreferences().shouldRedirectStdOut == true for: true == true
|
1925
|
+
# Multireporter updates ReporterPreferences properly
|
1926
|
+
ok {test-number} - multiReporter.getPreferences().shouldReportAllAssertions == false for: false == false
|
1927
|
+
# Multireporter updates ReporterPreferences properly
|
1928
|
+
ok {test-number} - multiReporter.getPreferences().shouldRedirectStdOut == true for: true == true
|
1929
|
+
# Multireporter updates ReporterPreferences properly
|
1930
|
+
ok {test-number} - multiReporter.getPreferences().shouldReportAllAssertions == true for: true == true
|
1931
|
+
# Multireporter updates ReporterPreferences properly
|
1932
|
+
ok {test-number} - multiReporter.getPreferences().shouldRedirectStdOut == true for: true == true
|
1933
|
+
# Multireporter updates ReporterPreferences properly
|
1934
|
+
ok {test-number} - multiReporter.getPreferences().shouldReportAllAssertions == true for: true == true
|
1935
|
+
# Nested generators and captured variables
|
1936
|
+
ok {test-number} - values > -6 for: 3 > -6
|
1937
|
+
# Nested generators and captured variables
|
1938
|
+
ok {test-number} - values > -6 for: 4 > -6
|
1939
|
+
# Nested generators and captured variables
|
1940
|
+
ok {test-number} - values > -6 for: 5 > -6
|
1941
|
+
# Nested generators and captured variables
|
1942
|
+
ok {test-number} - values > -6 for: 6 > -6
|
1943
|
+
# Nested generators and captured variables
|
1944
|
+
ok {test-number} - values > -6 for: -5 > -6
|
1945
|
+
# Nested generators and captured variables
|
1946
|
+
ok {test-number} - values > -6 for: -4 > -6
|
1947
|
+
# Nested generators and captured variables
|
1948
|
+
ok {test-number} - values > -6 for: 90 > -6
|
1949
|
+
# Nested generators and captured variables
|
1950
|
+
ok {test-number} - values > -6 for: 91 > -6
|
1951
|
+
# Nested generators and captured variables
|
1952
|
+
ok {test-number} - values > -6 for: 92 > -6
|
1953
|
+
# Nested generators and captured variables
|
1954
|
+
ok {test-number} - values > -6 for: 93 > -6
|
1955
|
+
# Nested generators and captured variables
|
1956
|
+
ok {test-number} - values > -6 for: 94 > -6
|
1957
|
+
# Nested generators and captured variables
|
1958
|
+
ok {test-number} - values > -6 for: 95 > -6
|
1959
|
+
# Nested generators and captured variables
|
1960
|
+
ok {test-number} - values > -6 for: 96 > -6
|
1961
|
+
# Nested generators and captured variables
|
1962
|
+
ok {test-number} - values > -6 for: 97 > -6
|
1963
|
+
# Nested generators and captured variables
|
1964
|
+
ok {test-number} - values > -6 for: 98 > -6
|
1965
|
+
# Nested generators and captured variables
|
1966
|
+
ok {test-number} - values > -6 for: 99 > -6
|
1967
|
+
# Nice descriptive name
|
1968
|
+
warning {test-number} - 'This one ran'
|
1969
|
+
# Non-std exceptions can be translated
|
1970
|
+
not ok {test-number} - unexpected exception with message: 'custom exception'
|
1971
|
+
# Objects that evaluated in boolean contexts can be checked
|
1972
|
+
ok {test-number} - True for: {?}
|
1973
|
+
# Objects that evaluated in boolean contexts can be checked
|
1974
|
+
ok {test-number} - !False for: true
|
1975
|
+
# Objects that evaluated in boolean contexts can be checked
|
1976
|
+
ok {test-number} - !(False) for: !{?}
|
1977
|
+
# Optionally static assertions
|
1978
|
+
ok {test-number} - with 1 message: 'std::is_void<void>::value'
|
1979
|
+
# Optionally static assertions
|
1980
|
+
ok {test-number} - with 1 message: '!(std::is_void<int>::value)'
|
1981
|
+
# Optionally static assertions
|
1982
|
+
ok {test-number} - with 1 message: 'std::is_void<void>::value'
|
1983
|
+
# Optionally static assertions
|
1984
|
+
ok {test-number} - with 1 message: '!(std::is_void<int>::value)'
|
1985
|
+
# Ordering comparison checks that should fail
|
1986
|
+
not ok {test-number} - data.int_seven > 7 for: 7 > 7
|
1987
|
+
# Ordering comparison checks that should fail
|
1988
|
+
not ok {test-number} - data.int_seven < 7 for: 7 < 7
|
1989
|
+
# Ordering comparison checks that should fail
|
1990
|
+
not ok {test-number} - data.int_seven > 8 for: 7 > 8
|
1991
|
+
# Ordering comparison checks that should fail
|
1992
|
+
not ok {test-number} - data.int_seven < 6 for: 7 < 6
|
1993
|
+
# Ordering comparison checks that should fail
|
1994
|
+
not ok {test-number} - data.int_seven < 0 for: 7 < 0
|
1995
|
+
# Ordering comparison checks that should fail
|
1996
|
+
not ok {test-number} - data.int_seven < -1 for: 7 < -1
|
1997
|
+
# Ordering comparison checks that should fail
|
1998
|
+
not ok {test-number} - data.int_seven >= 8 for: 7 >= 8
|
1999
|
+
# Ordering comparison checks that should fail
|
2000
|
+
not ok {test-number} - data.int_seven <= 6 for: 7 <= 6
|
2001
|
+
# Ordering comparison checks that should fail
|
2002
|
+
not ok {test-number} - data.float_nine_point_one < 9 for: 9.1f < 9
|
2003
|
+
# Ordering comparison checks that should fail
|
2004
|
+
not ok {test-number} - data.float_nine_point_one > 10 for: 9.1f > 10
|
2005
|
+
# Ordering comparison checks that should fail
|
2006
|
+
not ok {test-number} - data.float_nine_point_one > 9.2 for: 9.1f > 9.2
|
2007
|
+
# Ordering comparison checks that should fail
|
2008
|
+
not ok {test-number} - data.str_hello > "hello" for: "hello" > "hello"
|
2009
|
+
# Ordering comparison checks that should fail
|
2010
|
+
not ok {test-number} - data.str_hello < "hello" for: "hello" < "hello"
|
2011
|
+
# Ordering comparison checks that should fail
|
2012
|
+
not ok {test-number} - data.str_hello > "hellp" for: "hello" > "hellp"
|
2013
|
+
# Ordering comparison checks that should fail
|
2014
|
+
not ok {test-number} - data.str_hello > "z" for: "hello" > "z"
|
2015
|
+
# Ordering comparison checks that should fail
|
2016
|
+
not ok {test-number} - data.str_hello < "hellm" for: "hello" < "hellm"
|
2017
|
+
# Ordering comparison checks that should fail
|
2018
|
+
not ok {test-number} - data.str_hello < "a" for: "hello" < "a"
|
2019
|
+
# Ordering comparison checks that should fail
|
2020
|
+
not ok {test-number} - data.str_hello >= "z" for: "hello" >= "z"
|
2021
|
+
# Ordering comparison checks that should fail
|
2022
|
+
not ok {test-number} - data.str_hello <= "a" for: "hello" <= "a"
|
2023
|
+
# Ordering comparison checks that should succeed
|
2024
|
+
ok {test-number} - data.int_seven < 8 for: 7 < 8
|
2025
|
+
# Ordering comparison checks that should succeed
|
2026
|
+
ok {test-number} - data.int_seven > 6 for: 7 > 6
|
2027
|
+
# Ordering comparison checks that should succeed
|
2028
|
+
ok {test-number} - data.int_seven > 0 for: 7 > 0
|
2029
|
+
# Ordering comparison checks that should succeed
|
2030
|
+
ok {test-number} - data.int_seven > -1 for: 7 > -1
|
2031
|
+
# Ordering comparison checks that should succeed
|
2032
|
+
ok {test-number} - data.int_seven >= 7 for: 7 >= 7
|
2033
|
+
# Ordering comparison checks that should succeed
|
2034
|
+
ok {test-number} - data.int_seven >= 6 for: 7 >= 6
|
2035
|
+
# Ordering comparison checks that should succeed
|
2036
|
+
ok {test-number} - data.int_seven <= 7 for: 7 <= 7
|
2037
|
+
# Ordering comparison checks that should succeed
|
2038
|
+
ok {test-number} - data.int_seven <= 8 for: 7 <= 8
|
2039
|
+
# Ordering comparison checks that should succeed
|
2040
|
+
ok {test-number} - data.float_nine_point_one > 9 for: 9.1f > 9
|
2041
|
+
# Ordering comparison checks that should succeed
|
2042
|
+
ok {test-number} - data.float_nine_point_one < 10 for: 9.1f < 10
|
2043
|
+
# Ordering comparison checks that should succeed
|
2044
|
+
ok {test-number} - data.float_nine_point_one < 9.2 for: 9.1f < 9.2
|
2045
|
+
# Ordering comparison checks that should succeed
|
2046
|
+
ok {test-number} - data.str_hello <= "hello" for: "hello" <= "hello"
|
2047
|
+
# Ordering comparison checks that should succeed
|
2048
|
+
ok {test-number} - data.str_hello >= "hello" for: "hello" >= "hello"
|
2049
|
+
# Ordering comparison checks that should succeed
|
2050
|
+
ok {test-number} - data.str_hello < "hellp" for: "hello" < "hellp"
|
2051
|
+
# Ordering comparison checks that should succeed
|
2052
|
+
ok {test-number} - data.str_hello < "zebra" for: "hello" < "zebra"
|
2053
|
+
# Ordering comparison checks that should succeed
|
2054
|
+
ok {test-number} - data.str_hello > "hellm" for: "hello" > "hellm"
|
2055
|
+
# Ordering comparison checks that should succeed
|
2056
|
+
ok {test-number} - data.str_hello > "a" for: "hello" > "a"
|
2057
|
+
# Our PCG implementation provides expected results for known seeds
|
2058
|
+
ok {test-number} - rng() == 0x<hex digits> for: 4242248763 (0x<hex digits>) == 4242248763 (0x<hex digits>)
|
2059
|
+
# Our PCG implementation provides expected results for known seeds
|
2060
|
+
ok {test-number} - rng() == 0x<hex digits> for: 1867888929 (0x<hex digits>) == 1867888929 (0x<hex digits>)
|
2061
|
+
# Our PCG implementation provides expected results for known seeds
|
2062
|
+
ok {test-number} - rng() == 0x<hex digits> for: 1276619030 (0x<hex digits>) == 1276619030 (0x<hex digits>)
|
2063
|
+
# Our PCG implementation provides expected results for known seeds
|
2064
|
+
ok {test-number} - rng() == 0x<hex digits> for: 1911218783 (0x<hex digits>) == 1911218783 (0x<hex digits>)
|
2065
|
+
# Our PCG implementation provides expected results for known seeds
|
2066
|
+
ok {test-number} - rng() == 0x<hex digits> for: 1827115164 (0x<hex digits>) == 1827115164 (0x<hex digits>)
|
2067
|
+
# Our PCG implementation provides expected results for known seeds
|
2068
|
+
ok {test-number} - rng() == 0x<hex digits> for: 1472234645 (0x<hex digits>) == 1472234645 (0x<hex digits>)
|
2069
|
+
# Our PCG implementation provides expected results for known seeds
|
2070
|
+
ok {test-number} - rng() == 0x<hex digits> for: 868832940 (0x<hex digits>) == 868832940 (0x<hex digits>)
|
2071
|
+
# Our PCG implementation provides expected results for known seeds
|
2072
|
+
ok {test-number} - rng() == 0x<hex digits> for: 570883446 (0x<hex digits>) == 570883446 (0x<hex digits>)
|
2073
|
+
# Our PCG implementation provides expected results for known seeds
|
2074
|
+
ok {test-number} - rng() == 0x<hex digits> for: 889299803 (0x<hex digits>) == 889299803 (0x<hex digits>)
|
2075
|
+
# Our PCG implementation provides expected results for known seeds
|
2076
|
+
ok {test-number} - rng() == 0x<hex digits> for: 4261393167 (0x<hex digits>) == 4261393167 (0x<hex digits>)
|
2077
|
+
# Our PCG implementation provides expected results for known seeds
|
2078
|
+
ok {test-number} - rng() == 0x<hex digits> for: 1472234645 (0x<hex digits>) == 1472234645 (0x<hex digits>)
|
2079
|
+
# Our PCG implementation provides expected results for known seeds
|
2080
|
+
ok {test-number} - rng() == 0x<hex digits> for: 868832940 (0x<hex digits>) == 868832940 (0x<hex digits>)
|
2081
|
+
# Our PCG implementation provides expected results for known seeds
|
2082
|
+
ok {test-number} - rng() == 0x<hex digits> for: 570883446 (0x<hex digits>) == 570883446 (0x<hex digits>)
|
2083
|
+
# Our PCG implementation provides expected results for known seeds
|
2084
|
+
ok {test-number} - rng() == 0x<hex digits> for: 889299803 (0x<hex digits>) == 889299803 (0x<hex digits>)
|
2085
|
+
# Our PCG implementation provides expected results for known seeds
|
2086
|
+
ok {test-number} - rng() == 0x<hex digits> for: 4261393167 (0x<hex digits>) == 4261393167 (0x<hex digits>)
|
2087
|
+
# Output from all sections is reported
|
2088
|
+
not ok {test-number} - explicitly with 1 message: 'Message from section one'
|
2089
|
+
# Output from all sections is reported
|
2090
|
+
not ok {test-number} - explicitly with 1 message: 'Message from section two'
|
2091
|
+
# Overloaded comma or address-of operators are not used
|
2092
|
+
ok {test-number} - ( EvilMatcher(), EvilMatcher() ), EvilCommaOperatorUsed
|
2093
|
+
# Overloaded comma or address-of operators are not used
|
2094
|
+
ok {test-number} - &EvilMatcher(), EvilAddressOfOperatorUsed
|
2095
|
+
# Overloaded comma or address-of operators are not used
|
2096
|
+
ok {test-number} - EvilMatcher() || ( EvilMatcher() && !EvilMatcher() )
|
2097
|
+
# Overloaded comma or address-of operators are not used
|
2098
|
+
ok {test-number} - ( EvilMatcher() && EvilMatcher() ) || !EvilMatcher()
|
2099
|
+
# Parse uints
|
2100
|
+
ok {test-number} - parseUInt( "0" ) == Optional<unsigned int>{ 0 } for: {?} == {?}
|
2101
|
+
# Parse uints
|
2102
|
+
ok {test-number} - parseUInt( "100" ) == Optional<unsigned int>{ 100 } for: {?} == {?}
|
2103
|
+
# Parse uints
|
2104
|
+
ok {test-number} - parseUInt( "4294967295" ) == Optional<unsigned int>{ 4294967295 } for: {?} == {?}
|
2105
|
+
# Parse uints
|
2106
|
+
ok {test-number} - parseUInt( "0x<hex digits>", 16 ) == Optional<unsigned int>{ 255 } for: {?} == {?}
|
2107
|
+
# Parse uints
|
2108
|
+
ok {test-number} - !(parseUInt( "" )) for: !{?}
|
2109
|
+
# Parse uints
|
2110
|
+
ok {test-number} - !(parseUInt( "!!KJHF*#" )) for: !{?}
|
2111
|
+
# Parse uints
|
2112
|
+
ok {test-number} - !(parseUInt( "-1" )) for: !{?}
|
2113
|
+
# Parse uints
|
2114
|
+
ok {test-number} - !(parseUInt( "4294967296" )) for: !{?}
|
2115
|
+
# Parse uints
|
2116
|
+
ok {test-number} - !(parseUInt( "42949672964294967296429496729642949672964294967296" )) for: !{?}
|
2117
|
+
# Parse uints
|
2118
|
+
ok {test-number} - !(parseUInt( "2 4" )) for: !{?}
|
2119
|
+
# Parse uints
|
2120
|
+
ok {test-number} - !(parseUInt( "0x<hex digits>", 10 )) for: !{?}
|
2121
|
+
# Parsed tags are matched case insensitive
|
2122
|
+
ok {test-number} - spec.hasFilters() for: true
|
2123
|
+
# Parsed tags are matched case insensitive
|
2124
|
+
ok {test-number} - spec.getInvalidSpecs().empty() for: true
|
2125
|
+
# Parsed tags are matched case insensitive
|
2126
|
+
ok {test-number} - spec.matches( testCase ) for: true
|
2127
|
+
# Parsing sharding-related cli flags
|
2128
|
+
ok {test-number} - cli.parse({ "test", "--shard-count=8" }) for: {?}
|
2129
|
+
# Parsing sharding-related cli flags
|
2130
|
+
ok {test-number} - config.shardCount == 8 for: 8 == 8
|
2131
|
+
# Parsing sharding-related cli flags
|
2132
|
+
ok {test-number} - !(result) for: !{?}
|
2133
|
+
# Parsing sharding-related cli flags
|
2134
|
+
ok {test-number} - result.errorMessage(), ContainsSubstring( "Could not parse '-1' as shard count" ) for: "Could not parse '-1' as shard count" contains: "Could not parse '-1' as shard count"
|
2135
|
+
# Parsing sharding-related cli flags
|
2136
|
+
ok {test-number} - !(result) for: !{?}
|
2137
|
+
# Parsing sharding-related cli flags
|
2138
|
+
ok {test-number} - result.errorMessage(), ContainsSubstring( "Shard count must be positive" ) for: "Shard count must be positive" contains: "Shard count must be positive"
|
2139
|
+
# Parsing sharding-related cli flags
|
2140
|
+
ok {test-number} - cli.parse({ "test", "--shard-index=2" }) for: {?}
|
2141
|
+
# Parsing sharding-related cli flags
|
2142
|
+
ok {test-number} - config.shardIndex == 2 for: 2 == 2
|
2143
|
+
# Parsing sharding-related cli flags
|
2144
|
+
ok {test-number} - !(result) for: !{?}
|
2145
|
+
# Parsing sharding-related cli flags
|
2146
|
+
ok {test-number} - result.errorMessage(), ContainsSubstring( "Could not parse '-12' as shard index" ) for: "Could not parse '-12' as shard index" contains: "Could not parse '-12' as shard index"
|
2147
|
+
# Parsing sharding-related cli flags
|
2148
|
+
ok {test-number} - cli.parse({ "test", "--shard-index=0" }) for: {?}
|
2149
|
+
# Parsing sharding-related cli flags
|
2150
|
+
ok {test-number} - config.shardIndex == 0 for: 0 == 0
|
2151
|
+
# Parsing tags with non-alphabetical characters is pass-through
|
2152
|
+
ok {test-number} - spec.hasFilters() for: true with 1 message: 'tagString := "[tag with spaces]"'
|
2153
|
+
# Parsing tags with non-alphabetical characters is pass-through
|
2154
|
+
ok {test-number} - spec.getInvalidSpecs().empty() for: true with 1 message: 'tagString := "[tag with spaces]"'
|
2155
|
+
# Parsing tags with non-alphabetical characters is pass-through
|
2156
|
+
ok {test-number} - spec.matches( testCase ) for: true with 1 message: 'tagString := "[tag with spaces]"'
|
2157
|
+
# Parsing tags with non-alphabetical characters is pass-through
|
2158
|
+
ok {test-number} - spec.hasFilters() for: true with 1 message: 'tagString := "[I said "good day" sir!]"'
|
2159
|
+
# Parsing tags with non-alphabetical characters is pass-through
|
2160
|
+
ok {test-number} - spec.getInvalidSpecs().empty() for: true with 1 message: 'tagString := "[I said "good day" sir!]"'
|
2161
|
+
# Parsing tags with non-alphabetical characters is pass-through
|
2162
|
+
ok {test-number} - spec.matches( testCase ) for: true with 1 message: 'tagString := "[I said "good day" sir!]"'
|
2163
|
+
# Parsing warnings
|
2164
|
+
ok {test-number} - cli.parse( { "test", "-w", "NoAssertions" } ) for: {?}
|
2165
|
+
# Parsing warnings
|
2166
|
+
ok {test-number} - config.warnings == WarnAbout::NoAssertions for: 1 == 1
|
2167
|
+
# Parsing warnings
|
2168
|
+
ok {test-number} - !(cli.parse( { "test", "-w", "NoTests" } )) for: !{?}
|
2169
|
+
# Parsing warnings
|
2170
|
+
ok {test-number} - cli.parse( { "test", "--warn", "NoAssertions", "--warn", "UnmatchedTestSpec" } ) for: {?}
|
2171
|
+
# Parsing warnings
|
2172
|
+
ok {test-number} - config.warnings == ( WarnAbout::NoAssertions | WarnAbout::UnmatchedTestSpec ) for: 3 == 3
|
2173
|
+
# Pointers can be compared to null
|
2174
|
+
ok {test-number} - p == 0 for: 0 == 0
|
2175
|
+
# Pointers can be compared to null
|
2176
|
+
ok {test-number} - p == pNULL for: 0 == 0
|
2177
|
+
# Pointers can be compared to null
|
2178
|
+
ok {test-number} - p != 0 for: 0x<hex digits> != 0
|
2179
|
+
# Pointers can be compared to null
|
2180
|
+
ok {test-number} - cp != 0 for: 0x<hex digits> != 0
|
2181
|
+
# Pointers can be compared to null
|
2182
|
+
ok {test-number} - cpc != 0 for: 0x<hex digits> != 0
|
2183
|
+
# Pointers can be compared to null
|
2184
|
+
ok {test-number} - returnsNull() == 0 for: {null string} == 0
|
2185
|
+
# Pointers can be compared to null
|
2186
|
+
ok {test-number} - returnsConstNull() == 0 for: {null string} == 0
|
2187
|
+
# Pointers can be compared to null
|
2188
|
+
ok {test-number} - 0 != p for: 0 != 0x<hex digits>
|
2189
|
+
# Precision of floating point stringification can be set
|
2190
|
+
ok {test-number} - str1.size() == 3 + 5 for: 8 == 8
|
2191
|
+
# Precision of floating point stringification can be set
|
2192
|
+
ok {test-number} - str2.size() == 3 + 10 for: 13 == 13
|
2193
|
+
# Precision of floating point stringification can be set
|
2194
|
+
ok {test-number} - str1.size() == 2 + 5 for: 7 == 7
|
2195
|
+
# Precision of floating point stringification can be set
|
2196
|
+
ok {test-number} - str2.size() == 2 + 15 for: 17 == 17
|
2197
|
+
# Predicate matcher can accept const char*
|
2198
|
+
ok {test-number} - "foo", Predicate<const char*>( []( const char* const& ) { return true; } ) for: "foo" matches undescribed predicate
|
2199
|
+
# Process can be configured on command line
|
2200
|
+
ok {test-number} - result for: {?}
|
2201
|
+
# Process can be configured on command line
|
2202
|
+
ok {test-number} - config.processName == "" for: "" == ""
|
2203
|
+
# Process can be configured on command line
|
2204
|
+
ok {test-number} - result for: {?}
|
2205
|
+
# Process can be configured on command line
|
2206
|
+
ok {test-number} - config.processName == "test" for: "test" == "test"
|
2207
|
+
# Process can be configured on command line
|
2208
|
+
ok {test-number} - config.shouldDebugBreak == false for: false == false
|
2209
|
+
# Process can be configured on command line
|
2210
|
+
ok {test-number} - config.abortAfter == -1 for: -1 == -1
|
2211
|
+
# Process can be configured on command line
|
2212
|
+
ok {test-number} - config.noThrow == false for: false == false
|
2213
|
+
# Process can be configured on command line
|
2214
|
+
ok {test-number} - config.reporterSpecifications.empty() for: true
|
2215
|
+
# Process can be configured on command line
|
2216
|
+
ok {test-number} - !(cfg.hasTestFilters()) for: !false
|
2217
|
+
# Process can be configured on command line
|
2218
|
+
ok {test-number} - cfg.getReporterSpecs().size() == 1 for: 1 == 1
|
2219
|
+
# Process can be configured on command line
|
2220
|
+
ok {test-number} - cfg.getReporterSpecs()[0] == Catch::ReporterSpec{ expectedReporter, {}, {}, {} } for: {?} == {?}
|
2221
|
+
# Process can be configured on command line
|
2222
|
+
ok {test-number} - cfg.getProcessedReporterSpecs().size() == 1 for: 1 == 1
|
2223
|
+
# Process can be configured on command line
|
2224
|
+
ok {test-number} - cfg.getProcessedReporterSpecs()[0] == Catch::ProcessedReporterSpec{ expectedReporter, std::string{}, Catch::ColourMode::PlatformDefault, {} } for: {?} == {?}
|
2225
|
+
# Process can be configured on command line
|
2226
|
+
ok {test-number} - result for: {?}
|
2227
|
+
# Process can be configured on command line
|
2228
|
+
ok {test-number} - cfg.hasTestFilters() for: true
|
2229
|
+
# Process can be configured on command line
|
2230
|
+
ok {test-number} - cfg.testSpec().matches(*fakeTestCase("notIncluded")) == false for: false == false
|
2231
|
+
# Process can be configured on command line
|
2232
|
+
ok {test-number} - cfg.testSpec().matches(*fakeTestCase("test1")) for: true
|
2233
|
+
# Process can be configured on command line
|
2234
|
+
ok {test-number} - result for: {?}
|
2235
|
+
# Process can be configured on command line
|
2236
|
+
ok {test-number} - cfg.hasTestFilters() for: true
|
2237
|
+
# Process can be configured on command line
|
2238
|
+
ok {test-number} - cfg.testSpec().matches(*fakeTestCase("test1")) == false for: false == false
|
2239
|
+
# Process can be configured on command line
|
2240
|
+
ok {test-number} - cfg.testSpec().matches(*fakeTestCase("alwaysIncluded")) for: true
|
2241
|
+
# Process can be configured on command line
|
2242
|
+
ok {test-number} - result for: {?}
|
2243
|
+
# Process can be configured on command line
|
2244
|
+
ok {test-number} - cfg.hasTestFilters() for: true
|
2245
|
+
# Process can be configured on command line
|
2246
|
+
ok {test-number} - cfg.testSpec().matches(*fakeTestCase("test1")) == false for: false == false
|
2247
|
+
# Process can be configured on command line
|
2248
|
+
ok {test-number} - cfg.testSpec().matches(*fakeTestCase("alwaysIncluded")) for: true
|
2249
|
+
# Process can be configured on command line
|
2250
|
+
ok {test-number} - result for: {?} with 1 message: 'result.errorMessage() := ""'
|
2251
|
+
# Process can be configured on command line
|
2252
|
+
ok {test-number} - config.reporterSpecifications == vec_Specs{ { "console", {}, {}, {} } } for: { {?} } == { {?} } with 1 message: 'result.errorMessage() := ""'
|
2253
|
+
# Process can be configured on command line
|
2254
|
+
ok {test-number} - result for: {?} with 1 message: 'result.errorMessage() := ""'
|
2255
|
+
# Process can be configured on command line
|
2256
|
+
ok {test-number} - config.reporterSpecifications == vec_Specs{ { "xml", {}, {}, {} } } for: { {?} } == { {?} } with 1 message: 'result.errorMessage() := ""'
|
2257
|
+
# Process can be configured on command line
|
2258
|
+
ok {test-number} - result for: {?} with 1 message: 'result.errorMessage() := ""'
|
2259
|
+
# Process can be configured on command line
|
2260
|
+
ok {test-number} - config.reporterSpecifications == vec_Specs{ { "junit", {}, {}, {} } } for: { {?} } == { {?} } with 1 message: 'result.errorMessage() := ""'
|
2261
|
+
# Process can be configured on command line
|
2262
|
+
ok {test-number} - !result for: true
|
2263
|
+
# Process can be configured on command line
|
2264
|
+
ok {test-number} - result.errorMessage(), ContainsSubstring("Unrecognized reporter") for: "Unrecognized reporter, 'unsupported'. Check available with --list-reporters" contains: "Unrecognized reporter"
|
2265
|
+
# Process can be configured on command line
|
2266
|
+
ok {test-number} - result for: {?} with 1 message: 'result.errorMessage() := ""'
|
2267
|
+
# Process can be configured on command line
|
2268
|
+
ok {test-number} - config.reporterSpecifications == vec_Specs{ { "console", "out.txt"s, {}, {} } } for: { {?} } == { {?} } with 1 message: 'result.errorMessage() := ""'
|
2269
|
+
# Process can be configured on command line
|
2270
|
+
ok {test-number} - result for: {?} with 1 message: 'result.errorMessage() := ""'
|
2271
|
+
# Process can be configured on command line
|
2272
|
+
ok {test-number} - config.reporterSpecifications == vec_Specs{ { "console", "C:\\Temp\\out.txt"s, {}, {} } } for: { {?} } == { {?} } with 1 message: 'result.errorMessage() := ""'
|
2273
|
+
# Process can be configured on command line
|
2274
|
+
ok {test-number} - cli.parse({ "test", "-r", "xml::out=output.xml", "-r", "junit::out=output-junit.xml" }) for: {?}
|
2275
|
+
# Process can be configured on command line
|
2276
|
+
ok {test-number} - config.reporterSpecifications == vec_Specs{ { "xml", "output.xml"s, {}, {} }, { "junit", "output-junit.xml"s, {}, {} } } for: { {?}, {?} } == { {?}, {?} }
|
2277
|
+
# Process can be configured on command line
|
2278
|
+
ok {test-number} - cli.parse({ "test", "-r", "xml::out=output.xml", "-r", "console" }) for: {?}
|
2279
|
+
# Process can be configured on command line
|
2280
|
+
ok {test-number} - config.reporterSpecifications == vec_Specs{ { "xml", "output.xml"s, {}, {} }, { "console", {}, {}, {} } } for: { {?}, {?} } == { {?}, {?} }
|
2281
|
+
# Process can be configured on command line
|
2282
|
+
ok {test-number} - !result for: true
|
2283
|
+
# Process can be configured on command line
|
2284
|
+
ok {test-number} - result.errorMessage(), ContainsSubstring("Only one reporter may have unspecified output file.") for: "Only one reporter may have unspecified output file." contains: "Only one reporter may have unspecified output file."
|
2285
|
+
# Process can be configured on command line
|
2286
|
+
ok {test-number} - cli.parse({"test", "-b"}) for: {?}
|
2287
|
+
# Process can be configured on command line
|
2288
|
+
ok {test-number} - config.shouldDebugBreak == true for: true == true
|
2289
|
+
# Process can be configured on command line
|
2290
|
+
ok {test-number} - cli.parse({"test", "--break"}) for: {?}
|
2291
|
+
# Process can be configured on command line
|
2292
|
+
ok {test-number} - config.shouldDebugBreak for: true
|
2293
|
+
# Process can be configured on command line
|
2294
|
+
ok {test-number} - cli.parse({"test", "-a"}) for: {?}
|
2295
|
+
# Process can be configured on command line
|
2296
|
+
ok {test-number} - config.abortAfter == 1 for: 1 == 1
|
2297
|
+
# Process can be configured on command line
|
2298
|
+
ok {test-number} - cli.parse({"test", "-x", "2"}) for: {?}
|
2299
|
+
# Process can be configured on command line
|
2300
|
+
ok {test-number} - config.abortAfter == 2 for: 2 == 2
|
2301
|
+
# Process can be configured on command line
|
2302
|
+
ok {test-number} - !result for: true
|
2303
|
+
# Process can be configured on command line
|
2304
|
+
ok {test-number} - result.errorMessage(), ContainsSubstring("convert") && ContainsSubstring("oops") for: "Unable to convert 'oops' to destination type" ( contains: "convert" and contains: "oops" )
|
2305
|
+
# Process can be configured on command line
|
2306
|
+
ok {test-number} - cli.parse({"test", "--wait-for-keypress", std::get<0>(input)}) for: {?}
|
2307
|
+
# Process can be configured on command line
|
2308
|
+
ok {test-number} - config.waitForKeypress == std::get<1>(input) for: 0 == 0
|
2309
|
+
# Process can be configured on command line
|
2310
|
+
ok {test-number} - cli.parse({"test", "--wait-for-keypress", std::get<0>(input)}) for: {?}
|
2311
|
+
# Process can be configured on command line
|
2312
|
+
ok {test-number} - config.waitForKeypress == std::get<1>(input) for: 1 == 1
|
2313
|
+
# Process can be configured on command line
|
2314
|
+
ok {test-number} - cli.parse({"test", "--wait-for-keypress", std::get<0>(input)}) for: {?}
|
2315
|
+
# Process can be configured on command line
|
2316
|
+
ok {test-number} - config.waitForKeypress == std::get<1>(input) for: 2 == 2
|
2317
|
+
# Process can be configured on command line
|
2318
|
+
ok {test-number} - cli.parse({"test", "--wait-for-keypress", std::get<0>(input)}) for: {?}
|
2319
|
+
# Process can be configured on command line
|
2320
|
+
ok {test-number} - config.waitForKeypress == std::get<1>(input) for: 3 == 3
|
2321
|
+
# Process can be configured on command line
|
2322
|
+
ok {test-number} - !result for: true
|
2323
|
+
# Process can be configured on command line
|
2324
|
+
ok {test-number} - result.errorMessage(), ContainsSubstring("never") && ContainsSubstring("both") for: "keypress argument must be one of: never, start, exit or both. 'sometimes' not recognised" ( contains: "never" and contains: "both" )
|
2325
|
+
# Process can be configured on command line
|
2326
|
+
ok {test-number} - cli.parse({"test", "-e"}) for: {?}
|
2327
|
+
# Process can be configured on command line
|
2328
|
+
ok {test-number} - config.noThrow for: true
|
2329
|
+
# Process can be configured on command line
|
2330
|
+
ok {test-number} - cli.parse({"test", "--nothrow"}) for: {?}
|
2331
|
+
# Process can be configured on command line
|
2332
|
+
ok {test-number} - config.noThrow for: true
|
2333
|
+
# Process can be configured on command line
|
2334
|
+
ok {test-number} - cli.parse({"test", "-o", "filename.ext"}) for: {?}
|
2335
|
+
# Process can be configured on command line
|
2336
|
+
ok {test-number} - config.defaultOutputFilename == "filename.ext" for: "filename.ext" == "filename.ext"
|
2337
|
+
# Process can be configured on command line
|
2338
|
+
ok {test-number} - cli.parse({"test", "--out", "filename.ext"}) for: {?}
|
2339
|
+
# Process can be configured on command line
|
2340
|
+
ok {test-number} - config.defaultOutputFilename == "filename.ext" for: "filename.ext" == "filename.ext"
|
2341
|
+
# Process can be configured on command line
|
2342
|
+
ok {test-number} - cli.parse({"test", "-abe"}) for: {?}
|
2343
|
+
# Process can be configured on command line
|
2344
|
+
ok {test-number} - config.abortAfter == 1 for: 1 == 1
|
2345
|
+
# Process can be configured on command line
|
2346
|
+
ok {test-number} - config.shouldDebugBreak for: true
|
2347
|
+
# Process can be configured on command line
|
2348
|
+
ok {test-number} - config.noThrow == true for: true == true
|
2349
|
+
# Process can be configured on command line
|
2350
|
+
ok {test-number} - cli.parse({"test"}) for: {?}
|
2351
|
+
# Process can be configured on command line
|
2352
|
+
ok {test-number} - config.defaultColourMode == ColourMode::PlatformDefault for: 0 == 0
|
2353
|
+
# Process can be configured on command line
|
2354
|
+
ok {test-number} - cli.parse( { "test", "--colour-mode", "default" } ) for: {?}
|
2355
|
+
# Process can be configured on command line
|
2356
|
+
ok {test-number} - config.defaultColourMode == ColourMode::PlatformDefault for: 0 == 0
|
2357
|
+
# Process can be configured on command line
|
2358
|
+
ok {test-number} - cli.parse({"test", "--colour-mode", "ansi"}) for: {?}
|
2359
|
+
# Process can be configured on command line
|
2360
|
+
ok {test-number} - config.defaultColourMode == ColourMode::ANSI for: 1 == 1
|
2361
|
+
# Process can be configured on command line
|
2362
|
+
ok {test-number} - cli.parse({"test", "--colour-mode", "none"}) for: {?}
|
2363
|
+
# Process can be configured on command line
|
2364
|
+
ok {test-number} - config.defaultColourMode == ColourMode::None for: 3 == 3
|
2365
|
+
# Process can be configured on command line
|
2366
|
+
ok {test-number} - !result for: true
|
2367
|
+
# Process can be configured on command line
|
2368
|
+
ok {test-number} - result.errorMessage(), ContainsSubstring( "colour mode must be one of" ) for: "colour mode must be one of: default, ansi, win32, or none. 'wrong' is not recognised" contains: "colour mode must be one of"
|
2369
|
+
# Process can be configured on command line
|
2370
|
+
ok {test-number} - cli.parse({ "test", "--benchmark-samples=200" }) for: {?}
|
2371
|
+
# Process can be configured on command line
|
2372
|
+
ok {test-number} - config.benchmarkSamples == 200 for: 200 == 200
|
2373
|
+
# Process can be configured on command line
|
2374
|
+
ok {test-number} - cli.parse({ "test", "--benchmark-resamples=20000" }) for: {?}
|
2375
|
+
# Process can be configured on command line
|
2376
|
+
ok {test-number} - config.benchmarkResamples == 20000 for: 20000 (0x<hex digits>) == 20000 (0x<hex digits>)
|
2377
|
+
# Process can be configured on command line
|
2378
|
+
ok {test-number} - cli.parse({ "test", "--benchmark-confidence-interval=0.99" }) for: {?}
|
2379
|
+
# Process can be configured on command line
|
2380
|
+
ok {test-number} - config.benchmarkConfidenceInterval == Catch::Approx(0.99) for: 0.99 == Approx( 0.99 )
|
2381
|
+
# Process can be configured on command line
|
2382
|
+
ok {test-number} - cli.parse({ "test", "--benchmark-no-analysis" }) for: {?}
|
2383
|
+
# Process can be configured on command line
|
2384
|
+
ok {test-number} - config.benchmarkNoAnalysis for: true
|
2385
|
+
# Process can be configured on command line
|
2386
|
+
ok {test-number} - cli.parse({ "test", "--benchmark-warmup-time=10" }) for: {?}
|
2387
|
+
# Process can be configured on command line
|
2388
|
+
ok {test-number} - config.benchmarkWarmupTime == 10 for: 10 == 10
|
2389
|
+
# Product with differing arities - std::tuple<int, double, float>
|
2390
|
+
ok {test-number} - std::tuple_size<TestType>::value >= 1 for: 3 >= 1
|
2391
|
+
# Product with differing arities - std::tuple<int, double>
|
2392
|
+
ok {test-number} - std::tuple_size<TestType>::value >= 1 for: 2 >= 1
|
2393
|
+
# Product with differing arities - std::tuple<int>
|
2394
|
+
ok {test-number} - std::tuple_size<TestType>::value >= 1 for: 1 >= 1
|
2395
|
+
# Random seed generation accepts known methods
|
2396
|
+
ok {test-number} - Catch::generateRandomSeed(method)
|
2397
|
+
# Random seed generation accepts known methods
|
2398
|
+
ok {test-number} - Catch::generateRandomSeed(method)
|
2399
|
+
# Random seed generation accepts known methods
|
2400
|
+
ok {test-number} - Catch::generateRandomSeed(method)
|
2401
|
+
# Random seed generation reports unknown methods
|
2402
|
+
ok {test-number} - Catch::generateRandomSeed(static_cast<Catch::GenerateFrom>(77))
|
2403
|
+
# Range type with sentinel
|
2404
|
+
ok {test-number} - Catch::Detail::stringify(UsesSentinel{}) == "{ }" for: "{ }" == "{ }"
|
2405
|
+
# Reconstruction should be based on stringification: #914
|
2406
|
+
not ok {test-number} - truthy(false) for: Hey, its truthy!
|
2407
|
+
# Regex string matcher
|
2408
|
+
not ok {test-number} - testStringForMatching(), Matches( "this STRING contains 'abc' as a substring" ) for: "this string contains 'abc' as a substring" matches "this STRING contains 'abc' as a substring" case sensitively
|
2409
|
+
# Regex string matcher
|
2410
|
+
not ok {test-number} - testStringForMatching(), Matches( "contains 'abc' as a substring" ) for: "this string contains 'abc' as a substring" matches "contains 'abc' as a substring" case sensitively
|
2411
|
+
# Regex string matcher
|
2412
|
+
not ok {test-number} - testStringForMatching(), Matches( "this string contains 'abc' as a" ) for: "this string contains 'abc' as a substring" matches "this string contains 'abc' as a" case sensitively
|
2413
|
+
# Registering reporter with '::' in name fails
|
2414
|
+
ok {test-number} - registry.registerReporter( "with::doublecolons", Catch::Detail::make_unique<TestReporterFactory>() ), "'::' is not allowed in reporter name: 'with::doublecolons'" for: "'::' is not allowed in reporter name: 'with::doublecolons'" equals: "'::' is not allowed in reporter name: 'with::doublecolons'"
|
2415
|
+
# Regression test #1
|
2416
|
+
ok {test-number} - actual, !UnorderedEquals( expected ) for: { 'a', 'b' } not UnorderedEquals: { 'c', 'b' }
|
2417
|
+
# Reporter's write listings to provided stream
|
2418
|
+
ok {test-number} - !(factories.empty()) for: !false
|
2419
|
+
# Reporter's write listings to provided stream
|
2420
|
+
ok {test-number} - listingString, ContainsSubstring("fakeTag"s) for: "All available tags: 1 [fakeTag] 1 tag " contains: "fakeTag" with 1 message: 'Tested reporter: Automake'
|
2421
|
+
# Reporter's write listings to provided stream
|
2422
|
+
ok {test-number} - !(factories.empty()) for: !false
|
2423
|
+
# Reporter's write listings to provided stream
|
2424
|
+
ok {test-number} - listingString, ContainsSubstring("fake reporter"s) for: "Available reporters: fake reporter: fake description " contains: "fake reporter" with 1 message: 'Tested reporter: Automake'
|
2425
|
+
# Reporter's write listings to provided stream
|
2426
|
+
ok {test-number} - !(factories.empty()) for: !false
|
2427
|
+
# Reporter's write listings to provided stream
|
2428
|
+
ok {test-number} - listingString, ContainsSubstring( "fake test name"s ) && ContainsSubstring( "fakeTestTag"s ) for: "All available test cases: fake test name [fakeTestTag] 1 test case " ( contains: "fake test name" and contains: "fakeTestTag" ) with 1 message: 'Tested reporter: Automake'
|
2429
|
+
# Reporter's write listings to provided stream
|
2430
|
+
ok {test-number} - !(factories.empty()) for: !false
|
2431
|
+
# Reporter's write listings to provided stream
|
2432
|
+
ok {test-number} - listingString, ContainsSubstring("fakeTag"s) for: "All available tags: 1 [fakeTag] 1 tag " contains: "fakeTag" with 1 message: 'Tested reporter: compact'
|
2433
|
+
# Reporter's write listings to provided stream
|
2434
|
+
ok {test-number} - !(factories.empty()) for: !false
|
2435
|
+
# Reporter's write listings to provided stream
|
2436
|
+
ok {test-number} - listingString, ContainsSubstring("fake reporter"s) for: "Available reporters: fake reporter: fake description " contains: "fake reporter" with 1 message: 'Tested reporter: compact'
|
2437
|
+
# Reporter's write listings to provided stream
|
2438
|
+
ok {test-number} - !(factories.empty()) for: !false
|
2439
|
+
# Reporter's write listings to provided stream
|
2440
|
+
ok {test-number} - listingString, ContainsSubstring( "fake test name"s ) && ContainsSubstring( "fakeTestTag"s ) for: "All available test cases: fake test name [fakeTestTag] 1 test case " ( contains: "fake test name" and contains: "fakeTestTag" ) with 1 message: 'Tested reporter: compact'
|
2441
|
+
# Reporter's write listings to provided stream
|
2442
|
+
ok {test-number} - !(factories.empty()) for: !false
|
2443
|
+
# Reporter's write listings to provided stream
|
2444
|
+
ok {test-number} - listingString, ContainsSubstring("fakeTag"s) for: "All available tags: 1 [fakeTag] 1 tag " contains: "fakeTag" with 1 message: 'Tested reporter: console'
|
2445
|
+
# Reporter's write listings to provided stream
|
2446
|
+
ok {test-number} - !(factories.empty()) for: !false
|
2447
|
+
# Reporter's write listings to provided stream
|
2448
|
+
ok {test-number} - listingString, ContainsSubstring("fake reporter"s) for: "Available reporters: fake reporter: fake description " contains: "fake reporter" with 1 message: 'Tested reporter: console'
|
2449
|
+
# Reporter's write listings to provided stream
|
2450
|
+
ok {test-number} - !(factories.empty()) for: !false
|
2451
|
+
# Reporter's write listings to provided stream
|
2452
|
+
ok {test-number} - listingString, ContainsSubstring( "fake test name"s ) && ContainsSubstring( "fakeTestTag"s ) for: "All available test cases: fake test name [fakeTestTag] 1 test case " ( contains: "fake test name" and contains: "fakeTestTag" ) with 1 message: 'Tested reporter: console'
|
2453
|
+
# Reporter's write listings to provided stream
|
2454
|
+
ok {test-number} - !(factories.empty()) for: !false
|
2455
|
+
# Reporter's write listings to provided stream
|
2456
|
+
ok {test-number} - listingString, ContainsSubstring("fakeTag"s) for: "<?xml version="1.0" encoding="UTF-8"?> All available tags: 1 [fakeTag] 1 tag " contains: "fakeTag" with 1 message: 'Tested reporter: JUnit'
|
2457
|
+
# Reporter's write listings to provided stream
|
2458
|
+
ok {test-number} - !(factories.empty()) for: !false
|
2459
|
+
# Reporter's write listings to provided stream
|
2460
|
+
ok {test-number} - listingString, ContainsSubstring("fake reporter"s) for: "<?xml version="1.0" encoding="UTF-8"?> Available reporters: fake reporter: fake description " contains: "fake reporter" with 1 message: 'Tested reporter: JUnit'
|
2461
|
+
# Reporter's write listings to provided stream
|
2462
|
+
ok {test-number} - !(factories.empty()) for: !false
|
2463
|
+
# Reporter's write listings to provided stream
|
2464
|
+
ok {test-number} - listingString, ContainsSubstring( "fake test name"s ) && ContainsSubstring( "fakeTestTag"s ) for: "<?xml version="1.0" encoding="UTF-8"?> All available test cases: fake test name [fakeTestTag] 1 test case " ( contains: "fake test name" and contains: "fakeTestTag" ) with 1 message: 'Tested reporter: JUnit'
|
2465
|
+
# Reporter's write listings to provided stream
|
2466
|
+
ok {test-number} - !(factories.empty()) for: !false
|
2467
|
+
# Reporter's write listings to provided stream
|
2468
|
+
ok {test-number} - listingString, ContainsSubstring("fakeTag"s) for: "<?xml version="1.0" encoding="UTF-8"?> All available tags: 1 [fakeTag] 1 tag " contains: "fakeTag" with 1 message: 'Tested reporter: SonarQube'
|
2469
|
+
# Reporter's write listings to provided stream
|
2470
|
+
ok {test-number} - !(factories.empty()) for: !false
|
2471
|
+
# Reporter's write listings to provided stream
|
2472
|
+
ok {test-number} - listingString, ContainsSubstring("fake reporter"s) for: "<?xml version="1.0" encoding="UTF-8"?> Available reporters: fake reporter: fake description " contains: "fake reporter" with 1 message: 'Tested reporter: SonarQube'
|
2473
|
+
# Reporter's write listings to provided stream
|
2474
|
+
ok {test-number} - !(factories.empty()) for: !false
|
2475
|
+
# Reporter's write listings to provided stream
|
2476
|
+
ok {test-number} - listingString, ContainsSubstring( "fake test name"s ) && ContainsSubstring( "fakeTestTag"s ) for: "<?xml version="1.0" encoding="UTF-8"?> All available test cases: fake test name [fakeTestTag] 1 test case " ( contains: "fake test name" and contains: "fakeTestTag" ) with 1 message: 'Tested reporter: SonarQube'
|
2477
|
+
# Reporter's write listings to provided stream
|
2478
|
+
ok {test-number} - !(factories.empty()) for: !false
|
2479
|
+
# Reporter's write listings to provided stream
|
2480
|
+
ok {test-number} - listingString, ContainsSubstring("fakeTag"s) for: "All available tags: 1 [fakeTag] 1 tag " contains: "fakeTag" with 1 message: 'Tested reporter: TAP'
|
2481
|
+
# Reporter's write listings to provided stream
|
2482
|
+
ok {test-number} - !(factories.empty()) for: !false
|
2483
|
+
# Reporter's write listings to provided stream
|
2484
|
+
ok {test-number} - listingString, ContainsSubstring("fake reporter"s) for: "Available reporters: fake reporter: fake description " contains: "fake reporter" with 1 message: 'Tested reporter: TAP'
|
2485
|
+
# Reporter's write listings to provided stream
|
2486
|
+
ok {test-number} - !(factories.empty()) for: !false
|
2487
|
+
# Reporter's write listings to provided stream
|
2488
|
+
ok {test-number} - listingString, ContainsSubstring( "fake test name"s ) && ContainsSubstring( "fakeTestTag"s ) for: "All available test cases: fake test name [fakeTestTag] 1 test case " ( contains: "fake test name" and contains: "fakeTestTag" ) with 1 message: 'Tested reporter: TAP'
|
2489
|
+
# Reporter's write listings to provided stream
|
2490
|
+
ok {test-number} - !(factories.empty()) for: !false
|
2491
|
+
# Reporter's write listings to provided stream
|
2492
|
+
ok {test-number} - listingString, ContainsSubstring("fakeTag"s) for: "All available tags: 1 [fakeTag] 1 tag " contains: "fakeTag" with 1 message: 'Tested reporter: TeamCity'
|
2493
|
+
# Reporter's write listings to provided stream
|
2494
|
+
ok {test-number} - !(factories.empty()) for: !false
|
2495
|
+
# Reporter's write listings to provided stream
|
2496
|
+
ok {test-number} - listingString, ContainsSubstring("fake reporter"s) for: "Available reporters: fake reporter: fake description " contains: "fake reporter" with 1 message: 'Tested reporter: TeamCity'
|
2497
|
+
# Reporter's write listings to provided stream
|
2498
|
+
ok {test-number} - !(factories.empty()) for: !false
|
2499
|
+
# Reporter's write listings to provided stream
|
2500
|
+
ok {test-number} - listingString, ContainsSubstring( "fake test name"s ) && ContainsSubstring( "fakeTestTag"s ) for: "All available test cases: fake test name [fakeTestTag] 1 test case " ( contains: "fake test name" and contains: "fakeTestTag" ) with 1 message: 'Tested reporter: TeamCity'
|
2501
|
+
# Reporter's write listings to provided stream
|
2502
|
+
ok {test-number} - !(factories.empty()) for: !false
|
2503
|
+
# Reporter's write listings to provided stream
|
2504
|
+
ok {test-number} - listingString, ContainsSubstring("fakeTag"s) for: "<?xml version="1.0" encoding="UTF-8"?> <TagsFromMatchingTests> <Tag> <Count>1</Count> <Aliases> <Alias>fakeTag</Alias> </Aliases> </Tag> </TagsFromMatchingTests>" contains: "fakeTag" with 1 message: 'Tested reporter: XML'
|
2505
|
+
# Reporter's write listings to provided stream
|
2506
|
+
ok {test-number} - !(factories.empty()) for: !false
|
2507
|
+
# Reporter's write listings to provided stream
|
2508
|
+
ok {test-number} - listingString, ContainsSubstring("fake reporter"s) for: "<?xml version="1.0" encoding="UTF-8"?> <AvailableReporters> <Reporter> <Name>fake reporter</Name> <Description>fake description</Description> </Reporter> </AvailableReporters>" contains: "fake reporter" with 1 message: 'Tested reporter: XML'
|
2509
|
+
# Reporter's write listings to provided stream
|
2510
|
+
ok {test-number} - !(factories.empty()) for: !false
|
2511
|
+
# Reporter's write listings to provided stream
|
2512
|
+
ok {test-number} - listingString, ContainsSubstring( "fake test name"s ) && ContainsSubstring( "fakeTestTag"s ) for: "<?xml version="1.0" encoding="UTF-8"?> <MatchingTests> <TestCase> <Name>fake test name</Name> <ClassName/> <Tags>[fakeTestTag]</Tags> <SourceInfo> <File>fake-file.cpp</File> <Line>123456789</Line> </SourceInfo> </TestCase> </MatchingTests>" ( contains: "fake test name" and contains: "fakeTestTag" ) with 1 message: 'Tested reporter: XML'
|
2513
|
+
# Reproducer for #2309 - a very long description past 80 chars (default console width) with a late colon : blablabla
|
2514
|
+
ok {test-number} -
|
2515
|
+
# SUCCEED counts as a test pass
|
2516
|
+
ok {test-number} - with 1 message: 'this is a success'
|
2517
|
+
# SUCCEED does not require an argument
|
2518
|
+
ok {test-number} -
|
2519
|
+
# Scenario: BDD tests requiring Fixtures to provide commonly-accessed data or methods
|
2520
|
+
ok {test-number} - before == 0 for: 0 == 0
|
2521
|
+
# Scenario: BDD tests requiring Fixtures to provide commonly-accessed data or methods
|
2522
|
+
ok {test-number} - after > before for: 1 > 0
|
2523
|
+
# Scenario: Do that thing with the thing
|
2524
|
+
ok {test-number} - itDoesThis() for: true
|
2525
|
+
# Scenario: Do that thing with the thing
|
2526
|
+
ok {test-number} - itDoesThat() for: true
|
2527
|
+
# Scenario: This is a really long scenario name to see how the list command deals with wrapping
|
2528
|
+
ok {test-number} - with 1 message: 'boo!'
|
2529
|
+
# Scenario: Vector resizing affects size and capacity
|
2530
|
+
ok {test-number} - v.size() == 0 for: 0 == 0
|
2531
|
+
# Scenario: Vector resizing affects size and capacity
|
2532
|
+
ok {test-number} - v.size() == 10 for: 10 == 10
|
2533
|
+
# Scenario: Vector resizing affects size and capacity
|
2534
|
+
ok {test-number} - v.capacity() >= 10 for: 10 >= 10
|
2535
|
+
# Scenario: Vector resizing affects size and capacity
|
2536
|
+
ok {test-number} - v.size() == 5 for: 5 == 5
|
2537
|
+
# Scenario: Vector resizing affects size and capacity
|
2538
|
+
ok {test-number} - v.capacity() >= 10 for: 10 >= 10
|
2539
|
+
# Scenario: Vector resizing affects size and capacity
|
2540
|
+
ok {test-number} - v.size() == 0 for: 0 == 0
|
2541
|
+
# Scenario: Vector resizing affects size and capacity
|
2542
|
+
ok {test-number} - v.capacity() >= 10 for: 10 >= 10
|
2543
|
+
# Scenario: Vector resizing affects size and capacity
|
2544
|
+
ok {test-number} - v.size() == 0 for: 0 == 0
|
2545
|
+
# Some simple comparisons between doubles
|
2546
|
+
ok {test-number} - d == Approx( 1.23 ) for: 1.23 == Approx( 1.23 )
|
2547
|
+
# Some simple comparisons between doubles
|
2548
|
+
ok {test-number} - d != Approx( 1.22 ) for: 1.23 != Approx( 1.22 )
|
2549
|
+
# Some simple comparisons between doubles
|
2550
|
+
ok {test-number} - d != Approx( 1.24 ) for: 1.23 != Approx( 1.24 )
|
2551
|
+
# Some simple comparisons between doubles
|
2552
|
+
ok {test-number} - d == 1.23_a for: 1.23 == Approx( 1.23 )
|
2553
|
+
# Some simple comparisons between doubles
|
2554
|
+
ok {test-number} - d != 1.22_a for: 1.23 != Approx( 1.22 )
|
2555
|
+
# Some simple comparisons between doubles
|
2556
|
+
ok {test-number} - Approx( d ) == 1.23 for: Approx( 1.23 ) == 1.23
|
2557
|
+
# Some simple comparisons between doubles
|
2558
|
+
ok {test-number} - Approx( d ) != 1.22 for: Approx( 1.23 ) != 1.22
|
2559
|
+
# Some simple comparisons between doubles
|
2560
|
+
ok {test-number} - Approx( d ) != 1.24 for: Approx( 1.23 ) != 1.24
|
2561
|
+
# StartsWith string matcher
|
2562
|
+
not ok {test-number} - testStringForMatching(), StartsWith( "This String" ) for: "this string contains 'abc' as a substring" starts with: "This String"
|
2563
|
+
# StartsWith string matcher
|
2564
|
+
not ok {test-number} - testStringForMatching(), StartsWith( "string", Catch::CaseSensitive::No ) for: "this string contains 'abc' as a substring" starts with: "string" (case insensitive)
|
2565
|
+
# Static arrays are convertible to string
|
2566
|
+
ok {test-number} - Catch::Detail::stringify(singular) == "{ 1 }" for: "{ 1 }" == "{ 1 }"
|
2567
|
+
# Static arrays are convertible to string
|
2568
|
+
ok {test-number} - Catch::Detail::stringify(arr) == "{ 3, 2, 1 }" for: "{ 3, 2, 1 }" == "{ 3, 2, 1 }"
|
2569
|
+
# Static arrays are convertible to string
|
2570
|
+
ok {test-number} - Catch::Detail::stringify(arr) == R"({ { "1:1", "1:2", "1:3" }, { "2:1", "2:2" } })" for: "{ { "1:1", "1:2", "1:3" }, { "2:1", "2:2" } }" == "{ { "1:1", "1:2", "1:3" }, { "2:1", "2:2" } }"
|
2571
|
+
# String matchers
|
2572
|
+
ok {test-number} - testStringForMatching(), ContainsSubstring( "string" ) for: "this string contains 'abc' as a substring" contains: "string"
|
2573
|
+
# String matchers
|
2574
|
+
ok {test-number} - testStringForMatching(), ContainsSubstring( "string", Catch::CaseSensitive::No ) for: "this string contains 'abc' as a substring" contains: "string" (case insensitive)
|
2575
|
+
# String matchers
|
2576
|
+
ok {test-number} - testStringForMatching(), ContainsSubstring( "abc" ) for: "this string contains 'abc' as a substring" contains: "abc"
|
2577
|
+
# String matchers
|
2578
|
+
ok {test-number} - testStringForMatching(), ContainsSubstring( "aBC", Catch::CaseSensitive::No ) for: "this string contains 'abc' as a substring" contains: "abc" (case insensitive)
|
2579
|
+
# String matchers
|
2580
|
+
ok {test-number} - testStringForMatching(), StartsWith( "this" ) for: "this string contains 'abc' as a substring" starts with: "this"
|
2581
|
+
# String matchers
|
2582
|
+
ok {test-number} - testStringForMatching(), StartsWith( "THIS", Catch::CaseSensitive::No ) for: "this string contains 'abc' as a substring" starts with: "this" (case insensitive)
|
2583
|
+
# String matchers
|
2584
|
+
ok {test-number} - testStringForMatching(), EndsWith( "substring" ) for: "this string contains 'abc' as a substring" ends with: "substring"
|
2585
|
+
# String matchers
|
2586
|
+
ok {test-number} - testStringForMatching(), EndsWith( " SuBsTrInG", Catch::CaseSensitive::No ) for: "this string contains 'abc' as a substring" ends with: " substring" (case insensitive)
|
2587
|
+
# StringRef
|
2588
|
+
ok {test-number} - empty.empty() for: true
|
2589
|
+
# StringRef
|
2590
|
+
ok {test-number} - empty.size() == 0 for: 0 == 0
|
2591
|
+
# StringRef
|
2592
|
+
ok {test-number} - std::strcmp( empty.data(), "" ) == 0 for: 0 == 0
|
2593
|
+
# StringRef
|
2594
|
+
ok {test-number} - s.empty() == false for: false == false
|
2595
|
+
# StringRef
|
2596
|
+
ok {test-number} - s.size() == 5 for: 5 == 5
|
2597
|
+
# StringRef
|
2598
|
+
ok {test-number} - std::strcmp( rawChars, "hello" ) == 0 for: 0 == 0
|
2599
|
+
# StringRef
|
2600
|
+
ok {test-number} - s.data() == rawChars for: "hello" == "hello"
|
2601
|
+
# StringRef
|
2602
|
+
ok {test-number} - original == "original"
|
2603
|
+
# StringRef
|
2604
|
+
ok {test-number} - original.data()
|
2605
|
+
# StringRef
|
2606
|
+
ok {test-number} - original.begin() == copy.begin() for: "original string" == "original string"
|
2607
|
+
# StringRef
|
2608
|
+
ok {test-number} - original.begin() == copy.begin() for: "original string" == "original string"
|
2609
|
+
# StringRef
|
2610
|
+
ok {test-number} - ss.empty() == false for: false == false
|
2611
|
+
# StringRef
|
2612
|
+
ok {test-number} - ss.size() == 5 for: 5 == 5
|
2613
|
+
# StringRef
|
2614
|
+
ok {test-number} - std::strncmp( ss.data(), "hello", 5 ) == 0 for: 0 == 0
|
2615
|
+
# StringRef
|
2616
|
+
ok {test-number} - ss == "hello" for: hello == "hello"
|
2617
|
+
# StringRef
|
2618
|
+
ok {test-number} - ss.size() == 6 for: 6 == 6
|
2619
|
+
# StringRef
|
2620
|
+
ok {test-number} - std::strcmp( ss.data(), "world!" ) == 0 for: 0 == 0
|
2621
|
+
# StringRef
|
2622
|
+
ok {test-number} - s.data() == s2.data() for: "hello world!" == "hello world!"
|
2623
|
+
# StringRef
|
2624
|
+
ok {test-number} - s.data() == ss.data() for: "hello world!" == "hello world!"
|
2625
|
+
# StringRef
|
2626
|
+
ok {test-number} - s.substr(s.size() + 1, 123).empty() for: true
|
2627
|
+
# StringRef
|
2628
|
+
ok {test-number} - std::strcmp(ss.data(), "world!") == 0 for: 0 == 0
|
2629
|
+
# StringRef
|
2630
|
+
ok {test-number} - s.substr(1'000'000, 1).empty() for: true
|
2631
|
+
# StringRef
|
2632
|
+
ok {test-number} - reinterpret_cast<char*>(buffer1) != reinterpret_cast<char*>(buffer2) for: "Hello" != "Hello"
|
2633
|
+
# StringRef
|
2634
|
+
ok {test-number} - left == right for: Hello == Hello
|
2635
|
+
# StringRef
|
2636
|
+
ok {test-number} - left != left.substr(0, 3) for: Hello != Hel
|
2637
|
+
# StringRef
|
2638
|
+
ok {test-number} - sr == "a standard string" for: a standard string == "a standard string"
|
2639
|
+
# StringRef
|
2640
|
+
ok {test-number} - sr.size() == stdStr.size() for: 17 == 17
|
2641
|
+
# StringRef
|
2642
|
+
ok {test-number} - sr == "a standard string" for: a standard string == "a standard string"
|
2643
|
+
# StringRef
|
2644
|
+
ok {test-number} - sr.size() == stdStr.size() for: 17 == 17
|
2645
|
+
# StringRef
|
2646
|
+
ok {test-number} - sr == "a standard string" for: a standard string == "a standard string"
|
2647
|
+
# StringRef
|
2648
|
+
ok {test-number} - sr.size() == stdStr.size() for: 17 == 17
|
2649
|
+
# StringRef
|
2650
|
+
ok {test-number} - stdStr == "a stringref" for: "a stringref" == "a stringref"
|
2651
|
+
# StringRef
|
2652
|
+
ok {test-number} - stdStr.size() == sr.size() for: 11 == 11
|
2653
|
+
# StringRef
|
2654
|
+
ok {test-number} - stdStr == "a stringref" for: "a stringref" == "a stringref"
|
2655
|
+
# StringRef
|
2656
|
+
ok {test-number} - stdStr.size() == sr.size() for: 11 == 11
|
2657
|
+
# StringRef
|
2658
|
+
ok {test-number} - lhs == "some string += the stringref contents" for: "some string += the stringref contents" == "some string += the stringref contents"
|
2659
|
+
# StringRef
|
2660
|
+
ok {test-number} - together == "abrakadabra" for: "abrakadabra" == "abrakadabra"
|
2661
|
+
# StringRef at compilation time
|
2662
|
+
ok {test-number} - with 1 message: 'empty.size() == 0'
|
2663
|
+
# StringRef at compilation time
|
2664
|
+
ok {test-number} - with 1 message: 'empty.begin() == empty.end()'
|
2665
|
+
# StringRef at compilation time
|
2666
|
+
ok {test-number} - with 1 message: 'stringref.size() == 3'
|
2667
|
+
# StringRef at compilation time
|
2668
|
+
ok {test-number} - with 1 message: 'stringref.data() == abc'
|
2669
|
+
# StringRef at compilation time
|
2670
|
+
ok {test-number} - with 1 message: 'stringref.begin() == abc'
|
2671
|
+
# StringRef at compilation time
|
2672
|
+
ok {test-number} - with 1 message: 'stringref.begin() != stringref.end()'
|
2673
|
+
# StringRef at compilation time
|
2674
|
+
ok {test-number} - with 1 message: 'stringref.substr(10, 0).empty()'
|
2675
|
+
# StringRef at compilation time
|
2676
|
+
ok {test-number} - with 1 message: 'stringref.substr(2, 1).data() == abc + 2'
|
2677
|
+
# StringRef at compilation time
|
2678
|
+
ok {test-number} - with 1 message: 'stringref[1] == 'b''
|
2679
|
+
# StringRef at compilation time
|
2680
|
+
ok {test-number} - with 1 message: 'shortened.size() == 2'
|
2681
|
+
# StringRef at compilation time
|
2682
|
+
ok {test-number} - with 1 message: 'shortened.data() == abc'
|
2683
|
+
# StringRef at compilation time
|
2684
|
+
ok {test-number} - with 1 message: 'shortened.begin() != shortened.end()'
|
2685
|
+
# StringRef at compilation time
|
2686
|
+
ok {test-number} - with 1 message: '!(sr1.empty())'
|
2687
|
+
# StringRef at compilation time
|
2688
|
+
ok {test-number} - with 1 message: 'sr1.size() == 3'
|
2689
|
+
# StringRef at compilation time
|
2690
|
+
ok {test-number} - with 1 message: 'sr2.empty()'
|
2691
|
+
# StringRef at compilation time
|
2692
|
+
ok {test-number} - with 1 message: 'sr2.size() == 0'
|
2693
|
+
# Stringifying char arrays with statically known sizes - char
|
2694
|
+
ok {test-number} - ::Catch::Detail::stringify( with_null_terminator ) == R"("abc")"s for: ""abc"" == ""abc""
|
2695
|
+
# Stringifying char arrays with statically known sizes - char
|
2696
|
+
ok {test-number} - ::Catch::Detail::stringify( no_null_terminator ) == R"("abc")"s for: ""abc"" == ""abc""
|
2697
|
+
# Stringifying char arrays with statically known sizes - signed char
|
2698
|
+
ok {test-number} - ::Catch::Detail::stringify( with_null_terminator ) == R"("abc")"s for: ""abc"" == ""abc""
|
2699
|
+
# Stringifying char arrays with statically known sizes - signed char
|
2700
|
+
ok {test-number} - ::Catch::Detail::stringify( no_null_terminator ) == R"("abc")"s for: ""abc"" == ""abc""
|
2701
|
+
# Stringifying char arrays with statically known sizes - unsigned char
|
2702
|
+
ok {test-number} - ::Catch::Detail::stringify( with_null_terminator ) == R"("abc")"s for: ""abc"" == ""abc""
|
2703
|
+
# Stringifying char arrays with statically known sizes - unsigned char
|
2704
|
+
ok {test-number} - ::Catch::Detail::stringify( no_null_terminator ) == R"("abc")"s for: ""abc"" == ""abc""
|
2705
|
+
# Stringifying std::chrono::duration helpers
|
2706
|
+
ok {test-number} - minute == seconds for: 1 m == 60 s
|
2707
|
+
# Stringifying std::chrono::duration helpers
|
2708
|
+
ok {test-number} - hour != seconds for: 1 h != 60 s
|
2709
|
+
# Stringifying std::chrono::duration helpers
|
2710
|
+
ok {test-number} - micro != milli for: 1 us != 1 ms
|
2711
|
+
# Stringifying std::chrono::duration helpers
|
2712
|
+
ok {test-number} - nano != micro for: 1 ns != 1 us
|
2713
|
+
# Stringifying std::chrono::duration with weird ratios
|
2714
|
+
ok {test-number} - half_minute != femto_second for: 1 [30/1]s != 1 fs
|
2715
|
+
# Stringifying std::chrono::duration with weird ratios
|
2716
|
+
ok {test-number} - pico_second != atto_second for: 1 ps != 1 as
|
2717
|
+
# Stringifying std::chrono::time_point<system_clock>
|
2718
|
+
ok {test-number} - now != later for: {iso8601-timestamp} != {iso8601-timestamp}
|
2719
|
+
# Tabs and newlines show in output
|
2720
|
+
not ok {test-number} - s1 == s2 for: "if ($b == 10) { $a = 20; }" == "if ($b == 10) { $a = 20; } "
|
2721
|
+
# Tag alias can be registered against tag patterns
|
2722
|
+
ok {test-number} - what, ContainsSubstring( "[@zzz]" ) for: "error: tag alias, '[@zzz]' already registered. First seen at: file:2 Redefined at: file:10" contains: "[@zzz]"
|
2723
|
+
# Tag alias can be registered against tag patterns
|
2724
|
+
ok {test-number} - what, ContainsSubstring( "file" ) for: "error: tag alias, '[@zzz]' already registered. First seen at: file:2 Redefined at: file:10" contains: "file"
|
2725
|
+
# Tag alias can be registered against tag patterns
|
2726
|
+
ok {test-number} - what, ContainsSubstring( "2" ) for: "error: tag alias, '[@zzz]' already registered. First seen at: file:2 Redefined at: file:10" contains: "2"
|
2727
|
+
# Tag alias can be registered against tag patterns
|
2728
|
+
ok {test-number} - what, ContainsSubstring( "10" ) for: "error: tag alias, '[@zzz]' already registered. First seen at: file:2 Redefined at: file:10" contains: "10"
|
2729
|
+
# Tag alias can be registered against tag patterns
|
2730
|
+
ok {test-number} - registry.add( "[no ampersat]", "", Catch::SourceLineInfo( "file", 3 ) )
|
2731
|
+
# Tag alias can be registered against tag patterns
|
2732
|
+
ok {test-number} - registry.add( "[the @ is not at the start]", "", Catch::SourceLineInfo( "file", 3 ) )
|
2733
|
+
# Tag alias can be registered against tag patterns
|
2734
|
+
ok {test-number} - registry.add( "@no square bracket at start]", "", Catch::SourceLineInfo( "file", 3 ) )
|
2735
|
+
# Tag alias can be registered against tag patterns
|
2736
|
+
ok {test-number} - registry.add( "[@no square bracket at end", "", Catch::SourceLineInfo( "file", 3 ) )
|
2737
|
+
# Tags with spaces and non-alphanumerical characters are accepted
|
2738
|
+
ok {test-number} - testCase.tags.size() == 2 for: 2 == 2
|
2739
|
+
# Tags with spaces and non-alphanumerical characters are accepted
|
2740
|
+
ok {test-number} - testCase.tags, VectorContains( Tag( "tag with spaces" ) ) && VectorContains( Tag( "I said \"good day\" sir!"_catch_sr ) ) for: { {?}, {?} } ( Contains: {?} and Contains: {?} )
|
2741
|
+
# Template test case method with test types specified inside std::tuple - MyTypes - 0
|
2742
|
+
ok {test-number} - Template_Fixture<TestType>::m_a == 1 for: 1 == 1
|
2743
|
+
# Template test case method with test types specified inside std::tuple - MyTypes - 1
|
2744
|
+
ok {test-number} - Template_Fixture<TestType>::m_a == 1 for: 1 == 1
|
2745
|
+
# Template test case method with test types specified inside std::tuple - MyTypes - 2
|
2746
|
+
ok {test-number} - Template_Fixture<TestType>::m_a == 1 for: 1.0 == 1
|
2747
|
+
# Template test case with test types specified inside non-copyable and non-movable std::tuple - NonCopyableAndNonMovableTypes - 0
|
2748
|
+
ok {test-number} - sizeof(TestType) > 0 for: 1 > 0
|
2749
|
+
# Template test case with test types specified inside non-copyable and non-movable std::tuple - NonCopyableAndNonMovableTypes - 1
|
2750
|
+
ok {test-number} - sizeof(TestType) > 0 for: 4 > 0
|
2751
|
+
# Template test case with test types specified inside non-default-constructible std::tuple - MyNonDefaultConstructibleTypes - 0
|
2752
|
+
ok {test-number} - sizeof(TestType) > 0 for: 1 > 0
|
2753
|
+
# Template test case with test types specified inside non-default-constructible std::tuple - MyNonDefaultConstructibleTypes - 1
|
2754
|
+
ok {test-number} - sizeof(TestType) > 0 for: 4 > 0
|
2755
|
+
# Template test case with test types specified inside std::tuple - MyTypes - 0
|
2756
|
+
ok {test-number} - sizeof(TestType) > 0 for: 4 > 0
|
2757
|
+
# Template test case with test types specified inside std::tuple - MyTypes - 1
|
2758
|
+
ok {test-number} - sizeof(TestType) > 0 for: 1 > 0
|
2759
|
+
# Template test case with test types specified inside std::tuple - MyTypes - 2
|
2760
|
+
ok {test-number} - sizeof(TestType) > 0 for: 4 > 0
|
2761
|
+
# TemplateTest: vectors can be sized and resized - float
|
2762
|
+
ok {test-number} - v.size() == 5 for: 5 == 5
|
2763
|
+
# TemplateTest: vectors can be sized and resized - float
|
2764
|
+
ok {test-number} - v.capacity() >= 5 for: 5 >= 5
|
2765
|
+
# TemplateTest: vectors can be sized and resized - float
|
2766
|
+
ok {test-number} - v.size() == 10 for: 10 == 10
|
2767
|
+
# TemplateTest: vectors can be sized and resized - float
|
2768
|
+
ok {test-number} - v.capacity() >= 10 for: 10 >= 10
|
2769
|
+
# TemplateTest: vectors can be sized and resized - float
|
2770
|
+
ok {test-number} - v.size() == 5 for: 5 == 5
|
2771
|
+
# TemplateTest: vectors can be sized and resized - float
|
2772
|
+
ok {test-number} - v.capacity() >= 5 for: 5 >= 5
|
2773
|
+
# TemplateTest: vectors can be sized and resized - float
|
2774
|
+
ok {test-number} - v.size() == 0 for: 0 == 0
|
2775
|
+
# TemplateTest: vectors can be sized and resized - float
|
2776
|
+
ok {test-number} - v.capacity() >= 5 for: 5 >= 5
|
2777
|
+
# TemplateTest: vectors can be sized and resized - float
|
2778
|
+
ok {test-number} - v.capacity() == 0 for: 0 == 0
|
2779
|
+
# TemplateTest: vectors can be sized and resized - float
|
2780
|
+
ok {test-number} - v.size() == 5 for: 5 == 5
|
2781
|
+
# TemplateTest: vectors can be sized and resized - float
|
2782
|
+
ok {test-number} - v.capacity() >= 5 for: 5 >= 5
|
2783
|
+
# TemplateTest: vectors can be sized and resized - float
|
2784
|
+
ok {test-number} - v.size() == 5 for: 5 == 5
|
2785
|
+
# TemplateTest: vectors can be sized and resized - float
|
2786
|
+
ok {test-number} - v.capacity() >= 10 for: 10 >= 10
|
2787
|
+
# TemplateTest: vectors can be sized and resized - float
|
2788
|
+
ok {test-number} - v.size() == 5 for: 5 == 5
|
2789
|
+
# TemplateTest: vectors can be sized and resized - float
|
2790
|
+
ok {test-number} - v.capacity() >= 5 for: 5 >= 5
|
2791
|
+
# TemplateTest: vectors can be sized and resized - float
|
2792
|
+
ok {test-number} - v.size() == 5 for: 5 == 5
|
2793
|
+
# TemplateTest: vectors can be sized and resized - float
|
2794
|
+
ok {test-number} - v.capacity() >= 5 for: 5 >= 5
|
2795
|
+
# TemplateTest: vectors can be sized and resized - int
|
2796
|
+
ok {test-number} - v.size() == 5 for: 5 == 5
|
2797
|
+
# TemplateTest: vectors can be sized and resized - int
|
2798
|
+
ok {test-number} - v.capacity() >= 5 for: 5 >= 5
|
2799
|
+
# TemplateTest: vectors can be sized and resized - int
|
2800
|
+
ok {test-number} - v.size() == 10 for: 10 == 10
|
2801
|
+
# TemplateTest: vectors can be sized and resized - int
|
2802
|
+
ok {test-number} - v.capacity() >= 10 for: 10 >= 10
|
2803
|
+
# TemplateTest: vectors can be sized and resized - int
|
2804
|
+
ok {test-number} - v.size() == 5 for: 5 == 5
|
2805
|
+
# TemplateTest: vectors can be sized and resized - int
|
2806
|
+
ok {test-number} - v.capacity() >= 5 for: 5 >= 5
|
2807
|
+
# TemplateTest: vectors can be sized and resized - int
|
2808
|
+
ok {test-number} - v.size() == 0 for: 0 == 0
|
2809
|
+
# TemplateTest: vectors can be sized and resized - int
|
2810
|
+
ok {test-number} - v.capacity() >= 5 for: 5 >= 5
|
2811
|
+
# TemplateTest: vectors can be sized and resized - int
|
2812
|
+
ok {test-number} - v.capacity() == 0 for: 0 == 0
|
2813
|
+
# TemplateTest: vectors can be sized and resized - int
|
2814
|
+
ok {test-number} - v.size() == 5 for: 5 == 5
|
2815
|
+
# TemplateTest: vectors can be sized and resized - int
|
2816
|
+
ok {test-number} - v.capacity() >= 5 for: 5 >= 5
|
2817
|
+
# TemplateTest: vectors can be sized and resized - int
|
2818
|
+
ok {test-number} - v.size() == 5 for: 5 == 5
|
2819
|
+
# TemplateTest: vectors can be sized and resized - int
|
2820
|
+
ok {test-number} - v.capacity() >= 10 for: 10 >= 10
|
2821
|
+
# TemplateTest: vectors can be sized and resized - int
|
2822
|
+
ok {test-number} - v.size() == 5 for: 5 == 5
|
2823
|
+
# TemplateTest: vectors can be sized and resized - int
|
2824
|
+
ok {test-number} - v.capacity() >= 5 for: 5 >= 5
|
2825
|
+
# TemplateTest: vectors can be sized and resized - int
|
2826
|
+
ok {test-number} - v.size() == 5 for: 5 == 5
|
2827
|
+
# TemplateTest: vectors can be sized and resized - int
|
2828
|
+
ok {test-number} - v.capacity() >= 5 for: 5 >= 5
|
2829
|
+
# TemplateTest: vectors can be sized and resized - std::string
|
2830
|
+
ok {test-number} - v.size() == 5 for: 5 == 5
|
2831
|
+
# TemplateTest: vectors can be sized and resized - std::string
|
2832
|
+
ok {test-number} - v.capacity() >= 5 for: 5 >= 5
|
2833
|
+
# TemplateTest: vectors can be sized and resized - std::string
|
2834
|
+
ok {test-number} - v.size() == 10 for: 10 == 10
|
2835
|
+
# TemplateTest: vectors can be sized and resized - std::string
|
2836
|
+
ok {test-number} - v.capacity() >= 10 for: 10 >= 10
|
2837
|
+
# TemplateTest: vectors can be sized and resized - std::string
|
2838
|
+
ok {test-number} - v.size() == 5 for: 5 == 5
|
2839
|
+
# TemplateTest: vectors can be sized and resized - std::string
|
2840
|
+
ok {test-number} - v.capacity() >= 5 for: 5 >= 5
|
2841
|
+
# TemplateTest: vectors can be sized and resized - std::string
|
2842
|
+
ok {test-number} - v.size() == 0 for: 0 == 0
|
2843
|
+
# TemplateTest: vectors can be sized and resized - std::string
|
2844
|
+
ok {test-number} - v.capacity() >= 5 for: 5 >= 5
|
2845
|
+
# TemplateTest: vectors can be sized and resized - std::string
|
2846
|
+
ok {test-number} - v.capacity() == 0 for: 0 == 0
|
2847
|
+
# TemplateTest: vectors can be sized and resized - std::string
|
2848
|
+
ok {test-number} - v.size() == 5 for: 5 == 5
|
2849
|
+
# TemplateTest: vectors can be sized and resized - std::string
|
2850
|
+
ok {test-number} - v.capacity() >= 5 for: 5 >= 5
|
2851
|
+
# TemplateTest: vectors can be sized and resized - std::string
|
2852
|
+
ok {test-number} - v.size() == 5 for: 5 == 5
|
2853
|
+
# TemplateTest: vectors can be sized and resized - std::string
|
2854
|
+
ok {test-number} - v.capacity() >= 10 for: 10 >= 10
|
2855
|
+
# TemplateTest: vectors can be sized and resized - std::string
|
2856
|
+
ok {test-number} - v.size() == 5 for: 5 == 5
|
2857
|
+
# TemplateTest: vectors can be sized and resized - std::string
|
2858
|
+
ok {test-number} - v.capacity() >= 5 for: 5 >= 5
|
2859
|
+
# TemplateTest: vectors can be sized and resized - std::string
|
2860
|
+
ok {test-number} - v.size() == 5 for: 5 == 5
|
2861
|
+
# TemplateTest: vectors can be sized and resized - std::string
|
2862
|
+
ok {test-number} - v.capacity() >= 5 for: 5 >= 5
|
2863
|
+
# TemplateTest: vectors can be sized and resized - std::tuple<int,float>
|
2864
|
+
ok {test-number} - v.size() == 5 for: 5 == 5
|
2865
|
+
# TemplateTest: vectors can be sized and resized - std::tuple<int,float>
|
2866
|
+
ok {test-number} - v.capacity() >= 5 for: 5 >= 5
|
2867
|
+
# TemplateTest: vectors can be sized and resized - std::tuple<int,float>
|
2868
|
+
ok {test-number} - v.size() == 10 for: 10 == 10
|
2869
|
+
# TemplateTest: vectors can be sized and resized - std::tuple<int,float>
|
2870
|
+
ok {test-number} - v.capacity() >= 10 for: 10 >= 10
|
2871
|
+
# TemplateTest: vectors can be sized and resized - std::tuple<int,float>
|
2872
|
+
ok {test-number} - v.size() == 5 for: 5 == 5
|
2873
|
+
# TemplateTest: vectors can be sized and resized - std::tuple<int,float>
|
2874
|
+
ok {test-number} - v.capacity() >= 5 for: 5 >= 5
|
2875
|
+
# TemplateTest: vectors can be sized and resized - std::tuple<int,float>
|
2876
|
+
ok {test-number} - v.size() == 0 for: 0 == 0
|
2877
|
+
# TemplateTest: vectors can be sized and resized - std::tuple<int,float>
|
2878
|
+
ok {test-number} - v.capacity() >= 5 for: 5 >= 5
|
2879
|
+
# TemplateTest: vectors can be sized and resized - std::tuple<int,float>
|
2880
|
+
ok {test-number} - v.capacity() == 0 for: 0 == 0
|
2881
|
+
# TemplateTest: vectors can be sized and resized - std::tuple<int,float>
|
2882
|
+
ok {test-number} - v.size() == 5 for: 5 == 5
|
2883
|
+
# TemplateTest: vectors can be sized and resized - std::tuple<int,float>
|
2884
|
+
ok {test-number} - v.capacity() >= 5 for: 5 >= 5
|
2885
|
+
# TemplateTest: vectors can be sized and resized - std::tuple<int,float>
|
2886
|
+
ok {test-number} - v.size() == 5 for: 5 == 5
|
2887
|
+
# TemplateTest: vectors can be sized and resized - std::tuple<int,float>
|
2888
|
+
ok {test-number} - v.capacity() >= 10 for: 10 >= 10
|
2889
|
+
# TemplateTest: vectors can be sized and resized - std::tuple<int,float>
|
2890
|
+
ok {test-number} - v.size() == 5 for: 5 == 5
|
2891
|
+
# TemplateTest: vectors can be sized and resized - std::tuple<int,float>
|
2892
|
+
ok {test-number} - v.capacity() >= 5 for: 5 >= 5
|
2893
|
+
# TemplateTest: vectors can be sized and resized - std::tuple<int,float>
|
2894
|
+
ok {test-number} - v.size() == 5 for: 5 == 5
|
2895
|
+
# TemplateTest: vectors can be sized and resized - std::tuple<int,float>
|
2896
|
+
ok {test-number} - v.capacity() >= 5 for: 5 >= 5
|
2897
|
+
# TemplateTestSig: vectors can be sized and resized - (std::tuple<int, float>), 6
|
2898
|
+
ok {test-number} - v.size() == V for: 6 == 6
|
2899
|
+
# TemplateTestSig: vectors can be sized and resized - (std::tuple<int, float>), 6
|
2900
|
+
ok {test-number} - v.capacity() >= V for: 6 >= 6
|
2901
|
+
# TemplateTestSig: vectors can be sized and resized - (std::tuple<int, float>), 6
|
2902
|
+
ok {test-number} - v.size() == 2 * V for: 12 == 12
|
2903
|
+
# TemplateTestSig: vectors can be sized and resized - (std::tuple<int, float>), 6
|
2904
|
+
ok {test-number} - v.capacity() >= 2 * V for: 12 >= 12
|
2905
|
+
# TemplateTestSig: vectors can be sized and resized - (std::tuple<int, float>), 6
|
2906
|
+
ok {test-number} - v.size() == V for: 6 == 6
|
2907
|
+
# TemplateTestSig: vectors can be sized and resized - (std::tuple<int, float>), 6
|
2908
|
+
ok {test-number} - v.capacity() >= V for: 6 >= 6
|
2909
|
+
# TemplateTestSig: vectors can be sized and resized - (std::tuple<int, float>), 6
|
2910
|
+
ok {test-number} - v.size() == 0 for: 0 == 0
|
2911
|
+
# TemplateTestSig: vectors can be sized and resized - (std::tuple<int, float>), 6
|
2912
|
+
ok {test-number} - v.capacity() >= V for: 6 >= 6
|
2913
|
+
# TemplateTestSig: vectors can be sized and resized - (std::tuple<int, float>), 6
|
2914
|
+
ok {test-number} - v.capacity() == 0 for: 0 == 0
|
2915
|
+
# TemplateTestSig: vectors can be sized and resized - (std::tuple<int, float>), 6
|
2916
|
+
ok {test-number} - v.size() == V for: 6 == 6
|
2917
|
+
# TemplateTestSig: vectors can be sized and resized - (std::tuple<int, float>), 6
|
2918
|
+
ok {test-number} - v.capacity() >= V for: 6 >= 6
|
2919
|
+
# TemplateTestSig: vectors can be sized and resized - (std::tuple<int, float>), 6
|
2920
|
+
ok {test-number} - v.size() == V for: 6 == 6
|
2921
|
+
# TemplateTestSig: vectors can be sized and resized - (std::tuple<int, float>), 6
|
2922
|
+
ok {test-number} - v.capacity() >= 2 * V for: 12 >= 12
|
2923
|
+
# TemplateTestSig: vectors can be sized and resized - (std::tuple<int, float>), 6
|
2924
|
+
ok {test-number} - v.size() == V for: 6 == 6
|
2925
|
+
# TemplateTestSig: vectors can be sized and resized - (std::tuple<int, float>), 6
|
2926
|
+
ok {test-number} - v.capacity() >= V for: 6 >= 6
|
2927
|
+
# TemplateTestSig: vectors can be sized and resized - (std::tuple<int, float>), 6
|
2928
|
+
ok {test-number} - v.size() == V for: 6 == 6
|
2929
|
+
# TemplateTestSig: vectors can be sized and resized - (std::tuple<int, float>), 6
|
2930
|
+
ok {test-number} - v.capacity() >= V for: 6 >= 6
|
2931
|
+
# TemplateTestSig: vectors can be sized and resized - float,4
|
2932
|
+
ok {test-number} - v.size() == V for: 4 == 4
|
2933
|
+
# TemplateTestSig: vectors can be sized and resized - float,4
|
2934
|
+
ok {test-number} - v.capacity() >= V for: 4 >= 4
|
2935
|
+
# TemplateTestSig: vectors can be sized and resized - float,4
|
2936
|
+
ok {test-number} - v.size() == 2 * V for: 8 == 8
|
2937
|
+
# TemplateTestSig: vectors can be sized and resized - float,4
|
2938
|
+
ok {test-number} - v.capacity() >= 2 * V for: 8 >= 8
|
2939
|
+
# TemplateTestSig: vectors can be sized and resized - float,4
|
2940
|
+
ok {test-number} - v.size() == V for: 4 == 4
|
2941
|
+
# TemplateTestSig: vectors can be sized and resized - float,4
|
2942
|
+
ok {test-number} - v.capacity() >= V for: 4 >= 4
|
2943
|
+
# TemplateTestSig: vectors can be sized and resized - float,4
|
2944
|
+
ok {test-number} - v.size() == 0 for: 0 == 0
|
2945
|
+
# TemplateTestSig: vectors can be sized and resized - float,4
|
2946
|
+
ok {test-number} - v.capacity() >= V for: 4 >= 4
|
2947
|
+
# TemplateTestSig: vectors can be sized and resized - float,4
|
2948
|
+
ok {test-number} - v.capacity() == 0 for: 0 == 0
|
2949
|
+
# TemplateTestSig: vectors can be sized and resized - float,4
|
2950
|
+
ok {test-number} - v.size() == V for: 4 == 4
|
2951
|
+
# TemplateTestSig: vectors can be sized and resized - float,4
|
2952
|
+
ok {test-number} - v.capacity() >= V for: 4 >= 4
|
2953
|
+
# TemplateTestSig: vectors can be sized and resized - float,4
|
2954
|
+
ok {test-number} - v.size() == V for: 4 == 4
|
2955
|
+
# TemplateTestSig: vectors can be sized and resized - float,4
|
2956
|
+
ok {test-number} - v.capacity() >= 2 * V for: 8 >= 8
|
2957
|
+
# TemplateTestSig: vectors can be sized and resized - float,4
|
2958
|
+
ok {test-number} - v.size() == V for: 4 == 4
|
2959
|
+
# TemplateTestSig: vectors can be sized and resized - float,4
|
2960
|
+
ok {test-number} - v.capacity() >= V for: 4 >= 4
|
2961
|
+
# TemplateTestSig: vectors can be sized and resized - float,4
|
2962
|
+
ok {test-number} - v.size() == V for: 4 == 4
|
2963
|
+
# TemplateTestSig: vectors can be sized and resized - float,4
|
2964
|
+
ok {test-number} - v.capacity() >= V for: 4 >= 4
|
2965
|
+
# TemplateTestSig: vectors can be sized and resized - int,5
|
2966
|
+
ok {test-number} - v.size() == V for: 5 == 5
|
2967
|
+
# TemplateTestSig: vectors can be sized and resized - int,5
|
2968
|
+
ok {test-number} - v.capacity() >= V for: 5 >= 5
|
2969
|
+
# TemplateTestSig: vectors can be sized and resized - int,5
|
2970
|
+
ok {test-number} - v.size() == 2 * V for: 10 == 10
|
2971
|
+
# TemplateTestSig: vectors can be sized and resized - int,5
|
2972
|
+
ok {test-number} - v.capacity() >= 2 * V for: 10 >= 10
|
2973
|
+
# TemplateTestSig: vectors can be sized and resized - int,5
|
2974
|
+
ok {test-number} - v.size() == V for: 5 == 5
|
2975
|
+
# TemplateTestSig: vectors can be sized and resized - int,5
|
2976
|
+
ok {test-number} - v.capacity() >= V for: 5 >= 5
|
2977
|
+
# TemplateTestSig: vectors can be sized and resized - int,5
|
2978
|
+
ok {test-number} - v.size() == 0 for: 0 == 0
|
2979
|
+
# TemplateTestSig: vectors can be sized and resized - int,5
|
2980
|
+
ok {test-number} - v.capacity() >= V for: 5 >= 5
|
2981
|
+
# TemplateTestSig: vectors can be sized and resized - int,5
|
2982
|
+
ok {test-number} - v.capacity() == 0 for: 0 == 0
|
2983
|
+
# TemplateTestSig: vectors can be sized and resized - int,5
|
2984
|
+
ok {test-number} - v.size() == V for: 5 == 5
|
2985
|
+
# TemplateTestSig: vectors can be sized and resized - int,5
|
2986
|
+
ok {test-number} - v.capacity() >= V for: 5 >= 5
|
2987
|
+
# TemplateTestSig: vectors can be sized and resized - int,5
|
2988
|
+
ok {test-number} - v.size() == V for: 5 == 5
|
2989
|
+
# TemplateTestSig: vectors can be sized and resized - int,5
|
2990
|
+
ok {test-number} - v.capacity() >= 2 * V for: 10 >= 10
|
2991
|
+
# TemplateTestSig: vectors can be sized and resized - int,5
|
2992
|
+
ok {test-number} - v.size() == V for: 5 == 5
|
2993
|
+
# TemplateTestSig: vectors can be sized and resized - int,5
|
2994
|
+
ok {test-number} - v.capacity() >= V for: 5 >= 5
|
2995
|
+
# TemplateTestSig: vectors can be sized and resized - int,5
|
2996
|
+
ok {test-number} - v.size() == V for: 5 == 5
|
2997
|
+
# TemplateTestSig: vectors can be sized and resized - int,5
|
2998
|
+
ok {test-number} - v.capacity() >= V for: 5 >= 5
|
2999
|
+
# TemplateTestSig: vectors can be sized and resized - std::string,15
|
3000
|
+
ok {test-number} - v.size() == V for: 15 == 15
|
3001
|
+
# TemplateTestSig: vectors can be sized and resized - std::string,15
|
3002
|
+
ok {test-number} - v.capacity() >= V for: 15 >= 15
|
3003
|
+
# TemplateTestSig: vectors can be sized and resized - std::string,15
|
3004
|
+
ok {test-number} - v.size() == 2 * V for: 30 == 30
|
3005
|
+
# TemplateTestSig: vectors can be sized and resized - std::string,15
|
3006
|
+
ok {test-number} - v.capacity() >= 2 * V for: 30 >= 30
|
3007
|
+
# TemplateTestSig: vectors can be sized and resized - std::string,15
|
3008
|
+
ok {test-number} - v.size() == V for: 15 == 15
|
3009
|
+
# TemplateTestSig: vectors can be sized and resized - std::string,15
|
3010
|
+
ok {test-number} - v.capacity() >= V for: 15 >= 15
|
3011
|
+
# TemplateTestSig: vectors can be sized and resized - std::string,15
|
3012
|
+
ok {test-number} - v.size() == 0 for: 0 == 0
|
3013
|
+
# TemplateTestSig: vectors can be sized and resized - std::string,15
|
3014
|
+
ok {test-number} - v.capacity() >= V for: 15 >= 15
|
3015
|
+
# TemplateTestSig: vectors can be sized and resized - std::string,15
|
3016
|
+
ok {test-number} - v.capacity() == 0 for: 0 == 0
|
3017
|
+
# TemplateTestSig: vectors can be sized and resized - std::string,15
|
3018
|
+
ok {test-number} - v.size() == V for: 15 == 15
|
3019
|
+
# TemplateTestSig: vectors can be sized and resized - std::string,15
|
3020
|
+
ok {test-number} - v.capacity() >= V for: 15 >= 15
|
3021
|
+
# TemplateTestSig: vectors can be sized and resized - std::string,15
|
3022
|
+
ok {test-number} - v.size() == V for: 15 == 15
|
3023
|
+
# TemplateTestSig: vectors can be sized and resized - std::string,15
|
3024
|
+
ok {test-number} - v.capacity() >= 2 * V for: 30 >= 30
|
3025
|
+
# TemplateTestSig: vectors can be sized and resized - std::string,15
|
3026
|
+
ok {test-number} - v.size() == V for: 15 == 15
|
3027
|
+
# TemplateTestSig: vectors can be sized and resized - std::string,15
|
3028
|
+
ok {test-number} - v.capacity() >= V for: 15 >= 15
|
3029
|
+
# TemplateTestSig: vectors can be sized and resized - std::string,15
|
3030
|
+
ok {test-number} - v.size() == V for: 15 == 15
|
3031
|
+
# TemplateTestSig: vectors can be sized and resized - std::string,15
|
3032
|
+
ok {test-number} - v.capacity() >= V for: 15 >= 15
|
3033
|
+
# Test case with identical tags keeps just one
|
3034
|
+
ok {test-number} - testCase.tags.size() == 1 for: 1 == 1
|
3035
|
+
# Test case with identical tags keeps just one
|
3036
|
+
ok {test-number} - testCase.tags[0] == Tag( "tag1" ) for: {?} == {?}
|
3037
|
+
# Test case with one argument
|
3038
|
+
ok {test-number} - with 1 message: 'no assertions'
|
3039
|
+
# Test enum bit values
|
3040
|
+
ok {test-number} - 0x<hex digits> == bit30and31 for: 3221225472 (0x<hex digits>) == 3221225472
|
3041
|
+
# Test with special, characters "in name
|
3042
|
+
ok {test-number} -
|
3043
|
+
# Testing checked-if
|
3044
|
+
ok {test-number} - true
|
3045
|
+
# Testing checked-if
|
3046
|
+
ok {test-number} -
|
3047
|
+
# Testing checked-if
|
3048
|
+
ok {test-number} - false # TODO
|
3049
|
+
# Testing checked-if
|
3050
|
+
ok {test-number} - true
|
3051
|
+
# Testing checked-if
|
3052
|
+
ok {test-number} - false # TODO
|
3053
|
+
# Testing checked-if
|
3054
|
+
ok {test-number} -
|
3055
|
+
# Testing checked-if 2
|
3056
|
+
ok {test-number} - true
|
3057
|
+
# Testing checked-if 2
|
3058
|
+
not ok {test-number} - explicitly
|
3059
|
+
# Testing checked-if 3
|
3060
|
+
ok {test-number} - false # TODO
|
3061
|
+
# Testing checked-if 3
|
3062
|
+
not ok {test-number} - explicitly
|
3063
|
+
# The NO_FAIL macro reports a failure but does not fail the test
|
3064
|
+
ok {test-number} - 1 == 2 # TODO
|
3065
|
+
# The default listing implementation write to provided stream
|
3066
|
+
ok {test-number} - listingString, ContainsSubstring("[fakeTag]"s) for: "All available tags: 1 [fakeTag] 1 tag " contains: "[fakeTag]"
|
3067
|
+
# The default listing implementation write to provided stream
|
3068
|
+
ok {test-number} - listingString, ContainsSubstring( "fake reporter"s ) && ContainsSubstring( "fake description"s ) for: "Available reporters: fake reporter: fake description " ( contains: "fake reporter" and contains: "fake description" )
|
3069
|
+
# The default listing implementation write to provided stream
|
3070
|
+
ok {test-number} - listingString, ContainsSubstring( "fake test name"s ) && ContainsSubstring( "fakeTestTag"s ) for: "All available test cases: fake test name [fakeTestTag] 1 test case " ( contains: "fake test name" and contains: "fakeTestTag" )
|
3071
|
+
# The default listing implementation write to provided stream
|
3072
|
+
ok {test-number} - listingString, ContainsSubstring( "fakeListener"s ) && ContainsSubstring( "fake description"s ) for: "Registered listeners: fakeListener: fake description " ( contains: "fakeListener" and contains: "fake description" )
|
3073
|
+
# This test 'should' fail but doesn't
|
3074
|
+
ok {test-number} - with 1 message: 'oops!'
|
3075
|
+
# Thrown string literals are translated
|
3076
|
+
not ok {test-number} - unexpected exception with message: 'For some reason someone is throwing a string literal!'
|
3077
|
+
# Tracker
|
3078
|
+
ok {test-number} - testCase.isOpen() for: true
|
3079
|
+
# Tracker
|
3080
|
+
ok {test-number} - s1.isOpen() for: true
|
3081
|
+
# Tracker
|
3082
|
+
ok {test-number} - s1.isSuccessfullyCompleted() for: true
|
3083
|
+
# Tracker
|
3084
|
+
ok {test-number} - testCase.isComplete() == false for: false == false
|
3085
|
+
# Tracker
|
3086
|
+
ok {test-number} - ctx.completedCycle() for: true
|
3087
|
+
# Tracker
|
3088
|
+
ok {test-number} - testCase.isSuccessfullyCompleted() for: true
|
3089
|
+
# Tracker
|
3090
|
+
ok {test-number} - testCase.isOpen() for: true
|
3091
|
+
# Tracker
|
3092
|
+
ok {test-number} - s1.isOpen() for: true
|
3093
|
+
# Tracker
|
3094
|
+
ok {test-number} - s1.isComplete() for: true
|
3095
|
+
# Tracker
|
3096
|
+
ok {test-number} - s1.isSuccessfullyCompleted() == false for: false == false
|
3097
|
+
# Tracker
|
3098
|
+
ok {test-number} - testCase.isComplete() == false for: false == false
|
3099
|
+
# Tracker
|
3100
|
+
ok {test-number} - ctx.completedCycle() for: true
|
3101
|
+
# Tracker
|
3102
|
+
ok {test-number} - testCase.isSuccessfullyCompleted() == false for: false == false
|
3103
|
+
# Tracker
|
3104
|
+
ok {test-number} - testCase2.isOpen() for: true
|
3105
|
+
# Tracker
|
3106
|
+
ok {test-number} - s1b.isOpen() == false for: false == false
|
3107
|
+
# Tracker
|
3108
|
+
ok {test-number} - ctx.completedCycle() for: true
|
3109
|
+
# Tracker
|
3110
|
+
ok {test-number} - testCase.isComplete() for: true
|
3111
|
+
# Tracker
|
3112
|
+
ok {test-number} - testCase.isSuccessfullyCompleted() for: true
|
3113
|
+
# Tracker
|
3114
|
+
ok {test-number} - testCase.isOpen() for: true
|
3115
|
+
# Tracker
|
3116
|
+
ok {test-number} - s1.isOpen() for: true
|
3117
|
+
# Tracker
|
3118
|
+
ok {test-number} - s1.isComplete() for: true
|
3119
|
+
# Tracker
|
3120
|
+
ok {test-number} - s1.isSuccessfullyCompleted() == false for: false == false
|
3121
|
+
# Tracker
|
3122
|
+
ok {test-number} - testCase.isComplete() == false for: false == false
|
3123
|
+
# Tracker
|
3124
|
+
ok {test-number} - ctx.completedCycle() for: true
|
3125
|
+
# Tracker
|
3126
|
+
ok {test-number} - testCase.isSuccessfullyCompleted() == false for: false == false
|
3127
|
+
# Tracker
|
3128
|
+
ok {test-number} - testCase2.isOpen() for: true
|
3129
|
+
# Tracker
|
3130
|
+
ok {test-number} - s1b.isOpen() == false for: false == false
|
3131
|
+
# Tracker
|
3132
|
+
ok {test-number} - s2.isOpen() for: true
|
3133
|
+
# Tracker
|
3134
|
+
ok {test-number} - ctx.completedCycle() for: true
|
3135
|
+
# Tracker
|
3136
|
+
ok {test-number} - testCase.isComplete() for: true
|
3137
|
+
# Tracker
|
3138
|
+
ok {test-number} - testCase.isSuccessfullyCompleted() for: true
|
3139
|
+
# Tracker
|
3140
|
+
ok {test-number} - testCase.isOpen() for: true
|
3141
|
+
# Tracker
|
3142
|
+
ok {test-number} - s1.isOpen() for: true
|
3143
|
+
# Tracker
|
3144
|
+
ok {test-number} - s2.isOpen() == false for: false == false
|
3145
|
+
# Tracker
|
3146
|
+
ok {test-number} - testCase.isComplete() == false for: false == false
|
3147
|
+
# Tracker
|
3148
|
+
ok {test-number} - testCase2.isOpen() for: true
|
3149
|
+
# Tracker
|
3150
|
+
ok {test-number} - s1b.isOpen() == false for: false == false
|
3151
|
+
# Tracker
|
3152
|
+
ok {test-number} - s2b.isOpen() for: true
|
3153
|
+
# Tracker
|
3154
|
+
ok {test-number} - ctx.completedCycle() == false for: false == false
|
3155
|
+
# Tracker
|
3156
|
+
ok {test-number} - ctx.completedCycle() for: true
|
3157
|
+
# Tracker
|
3158
|
+
ok {test-number} - s2b.isSuccessfullyCompleted() for: true
|
3159
|
+
# Tracker
|
3160
|
+
ok {test-number} - testCase2.isComplete() == false for: false == false
|
3161
|
+
# Tracker
|
3162
|
+
ok {test-number} - testCase2.isSuccessfullyCompleted() for: true
|
3163
|
+
# Tracker
|
3164
|
+
ok {test-number} - testCase.isOpen() for: true
|
3165
|
+
# Tracker
|
3166
|
+
ok {test-number} - s1.isOpen() for: true
|
3167
|
+
# Tracker
|
3168
|
+
ok {test-number} - s2.isOpen() == false for: false == false
|
3169
|
+
# Tracker
|
3170
|
+
ok {test-number} - testCase.isComplete() == false for: false == false
|
3171
|
+
# Tracker
|
3172
|
+
ok {test-number} - testCase2.isOpen() for: true
|
3173
|
+
# Tracker
|
3174
|
+
ok {test-number} - s1b.isOpen() == false for: false == false
|
3175
|
+
# Tracker
|
3176
|
+
ok {test-number} - s2b.isOpen() for: true
|
3177
|
+
# Tracker
|
3178
|
+
ok {test-number} - ctx.completedCycle() == false for: false == false
|
3179
|
+
# Tracker
|
3180
|
+
ok {test-number} - ctx.completedCycle() for: true
|
3181
|
+
# Tracker
|
3182
|
+
ok {test-number} - s2b.isComplete() for: true
|
3183
|
+
# Tracker
|
3184
|
+
ok {test-number} - s2b.isSuccessfullyCompleted() == false for: false == false
|
3185
|
+
# Tracker
|
3186
|
+
ok {test-number} - testCase2.isSuccessfullyCompleted() == false for: false == false
|
3187
|
+
# Tracker
|
3188
|
+
ok {test-number} - testCase3.isOpen() for: true
|
3189
|
+
# Tracker
|
3190
|
+
ok {test-number} - s1c.isOpen() == false for: false == false
|
3191
|
+
# Tracker
|
3192
|
+
ok {test-number} - s2c.isOpen() == false for: false == false
|
3193
|
+
# Tracker
|
3194
|
+
ok {test-number} - testCase3.isSuccessfullyCompleted() for: true
|
3195
|
+
# Tracker
|
3196
|
+
ok {test-number} - testCase.isOpen() for: true
|
3197
|
+
# Tracker
|
3198
|
+
ok {test-number} - s1.isOpen() for: true
|
3199
|
+
# Tracker
|
3200
|
+
ok {test-number} - s2.isOpen() for: true
|
3201
|
+
# Tracker
|
3202
|
+
ok {test-number} - s2.isComplete() for: true
|
3203
|
+
# Tracker
|
3204
|
+
ok {test-number} - s1.isComplete() == false for: false == false
|
3205
|
+
# Tracker
|
3206
|
+
ok {test-number} - s1.isComplete() for: true
|
3207
|
+
# Tracker
|
3208
|
+
ok {test-number} - testCase.isComplete() == false for: false == false
|
3209
|
+
# Tracker
|
3210
|
+
ok {test-number} - testCase.isComplete() for: true
|
3211
|
+
# Trim strings
|
3212
|
+
ok {test-number} - trim(std::string(no_whitespace)) == no_whitespace for: "There is no extra whitespace here" == "There is no extra whitespace here"
|
3213
|
+
# Trim strings
|
3214
|
+
ok {test-number} - trim(std::string(leading_whitespace)) == no_whitespace for: "There is no extra whitespace here" == "There is no extra whitespace here"
|
3215
|
+
# Trim strings
|
3216
|
+
ok {test-number} - trim(std::string(trailing_whitespace)) == no_whitespace for: "There is no extra whitespace here" == "There is no extra whitespace here"
|
3217
|
+
# Trim strings
|
3218
|
+
ok {test-number} - trim(std::string(whitespace_at_both_ends)) == no_whitespace for: "There is no extra whitespace here" == "There is no extra whitespace here"
|
3219
|
+
# Trim strings
|
3220
|
+
ok {test-number} - trim(StringRef(no_whitespace)) == StringRef(no_whitespace) for: There is no extra whitespace here == There is no extra whitespace here
|
3221
|
+
# Trim strings
|
3222
|
+
ok {test-number} - trim(StringRef(leading_whitespace)) == StringRef(no_whitespace) for: There is no extra whitespace here == There is no extra whitespace here
|
3223
|
+
# Trim strings
|
3224
|
+
ok {test-number} - trim(StringRef(trailing_whitespace)) == StringRef(no_whitespace) for: There is no extra whitespace here == There is no extra whitespace here
|
3225
|
+
# Trim strings
|
3226
|
+
ok {test-number} - trim(StringRef(whitespace_at_both_ends)) == StringRef(no_whitespace) for: There is no extra whitespace here == There is no extra whitespace here
|
3227
|
+
# Type conversions of RangeEquals and similar
|
3228
|
+
ok {test-number} - array_int_a, RangeEquals( c_array ) for: { 1, 2, 3 } elements are { 1, 2, 3 }
|
3229
|
+
# Type conversions of RangeEquals and similar
|
3230
|
+
ok {test-number} - array_int_a, UnorderedRangeEquals( c_array ) for: { 1, 2, 3 } unordered elements are { 1, 2, 3 }
|
3231
|
+
# Type conversions of RangeEquals and similar
|
3232
|
+
ok {test-number} - array_int_3, !RangeEquals( array_int_4 ) for: { 1, 2, 3 } not elements are { 1, 2, 3, 4 }
|
3233
|
+
# Type conversions of RangeEquals and similar
|
3234
|
+
ok {test-number} - array_int_3, !UnorderedRangeEquals( array_int_4 ) for: { 1, 2, 3 } not unordered elements are { 1, 2, 3, 4 }
|
3235
|
+
# Type conversions of RangeEquals and similar
|
3236
|
+
ok {test-number} - array_int_a, RangeEquals( vector_char_a ) for: { 1, 2, 3 } elements are { 1, 2, 3 }
|
3237
|
+
# Type conversions of RangeEquals and similar
|
3238
|
+
ok {test-number} - array_int_a, UnorderedRangeEquals( vector_char_a ) for: { 1, 2, 3 } unordered elements are { 1, 2, 3 }
|
3239
|
+
# Type conversions of RangeEquals and similar
|
3240
|
+
ok {test-number} - with 1 message: 'ContainerIsRandomAccess( array_int_a ) != ContainerIsRandomAccess( list_char_a )'
|
3241
|
+
# Type conversions of RangeEquals and similar
|
3242
|
+
ok {test-number} - array_int_a, RangeEquals( list_char_a ) for: { 1, 2, 3 } elements are { 1, 2, 3 }
|
3243
|
+
# Type conversions of RangeEquals and similar
|
3244
|
+
ok {test-number} - array_int_a, UnorderedRangeEquals( list_char_a ) for: { 1, 2, 3 } unordered elements are { 1, 2, 3 }
|
3245
|
+
# Type conversions of RangeEquals and similar
|
3246
|
+
ok {test-number} - vector_int_a, RangeEquals( vector_char_a ) for: { 1, 2, 3 } elements are { 1, 2, 3 }
|
3247
|
+
# Type conversions of RangeEquals and similar
|
3248
|
+
ok {test-number} - vector_int_a, UnorderedRangeEquals( vector_char_a ) for: { 1, 2, 3 } unordered elements are { 1, 2, 3 }
|
3249
|
+
# Type conversions of RangeEquals and similar
|
3250
|
+
ok {test-number} - vector_int_a, !RangeEquals( vector_char_b ) for: { 1, 2, 3 } not elements are { 1, 2, 2 }
|
3251
|
+
# Type conversions of RangeEquals and similar
|
3252
|
+
ok {test-number} - vector_int_a, !UnorderedRangeEquals( vector_char_b ) for: { 1, 2, 3 } not unordered elements are { 1, 2, 2 }
|
3253
|
+
# Type conversions of RangeEquals and similar
|
3254
|
+
ok {test-number} - a, !RangeEquals( b ) for: { 1, 2, 3 } not elements are { 3, 2, 1 }
|
3255
|
+
# Type conversions of RangeEquals and similar
|
3256
|
+
ok {test-number} - a, UnorderedRangeEquals( b ) for: { 1, 2, 3 } unordered elements are { 3, 2, 1 }
|
3257
|
+
# Type conversions of RangeEquals and similar
|
3258
|
+
ok {test-number} - vector_a, RangeEquals( array_a_plus_1, close_enough ) for: { 1, 2, 3 } elements are { 2, 3, 4 }
|
3259
|
+
# Type conversions of RangeEquals and similar
|
3260
|
+
ok {test-number} - vector_a, UnorderedRangeEquals( array_a_plus_1, close_enough ) for: { 1, 2, 3 } unordered elements are { 2, 3, 4 }
|
3261
|
+
# Unexpected exceptions can be translated
|
3262
|
+
not ok {test-number} - unexpected exception with message: '3.14'
|
3263
|
+
# Upcasting special member functions
|
3264
|
+
ok {test-number} - bptr->i == 3 for: 3 == 3
|
3265
|
+
# Upcasting special member functions
|
3266
|
+
ok {test-number} - bptr->i == 3 for: 3 == 3
|
3267
|
+
# Usage of AllMatch range matcher
|
3268
|
+
ok {test-number} - data, AllMatch(SizeIs(5)) for: { { 0, 1, 2, 3, 5 }, { 4, -3, -2, 5, 0 }, { 0, 0, 0, 5, 0 }, { 0, -5, 0, 5, 0 }, { 1, 0, 0, -1, 5 } } all match has size == 5
|
3269
|
+
# Usage of AllMatch range matcher
|
3270
|
+
ok {test-number} - data, !AllMatch(Contains(0) && Contains(1)) for: { { 0, 1, 2, 3, 5 }, { 4, -3, -2, 5, 0 }, { 0, 0, 0, 5, 0 }, { 0, -5, 0, 5, 0 }, { 1, 0, 0, -1, 5 } } not all match ( contains element 0 and contains element 1 )
|
3271
|
+
# Usage of AllMatch range matcher
|
3272
|
+
ok {test-number} - needs_adl, AllMatch( Predicate<int>( []( int elem ) { return elem < 6; } ) ) for: { 1, 2, 3, 4, 5 } all match matches undescribed predicate
|
3273
|
+
# Usage of AllMatch range matcher
|
3274
|
+
ok {test-number} - mocked, allMatch for: { 1, 2, 3, 4, 5 } all match matches undescribed predicate
|
3275
|
+
# Usage of AllMatch range matcher
|
3276
|
+
ok {test-number} - mocked.m_derefed[0] for: true
|
3277
|
+
# Usage of AllMatch range matcher
|
3278
|
+
ok {test-number} - mocked.m_derefed[1] for: true
|
3279
|
+
# Usage of AllMatch range matcher
|
3280
|
+
ok {test-number} - mocked.m_derefed[2] for: true
|
3281
|
+
# Usage of AllMatch range matcher
|
3282
|
+
ok {test-number} - mocked.m_derefed[3] for: true
|
3283
|
+
# Usage of AllMatch range matcher
|
3284
|
+
ok {test-number} - mocked.m_derefed[4] for: true
|
3285
|
+
# Usage of AllMatch range matcher
|
3286
|
+
ok {test-number} - mocked, !allMatch for: { 1, 2, 3, 4, 5 } not all match matches undescribed predicate
|
3287
|
+
# Usage of AllMatch range matcher
|
3288
|
+
ok {test-number} - mocked.m_derefed[0] for: true
|
3289
|
+
# Usage of AllMatch range matcher
|
3290
|
+
ok {test-number} - mocked.m_derefed[1] for: true
|
3291
|
+
# Usage of AllMatch range matcher
|
3292
|
+
ok {test-number} - mocked.m_derefed[2] for: true
|
3293
|
+
# Usage of AllMatch range matcher
|
3294
|
+
ok {test-number} - !(mocked.m_derefed[3]) for: !false
|
3295
|
+
# Usage of AllMatch range matcher
|
3296
|
+
ok {test-number} - !(mocked.m_derefed[4]) for: !false
|
3297
|
+
# Usage of AllTrue range matcher
|
3298
|
+
ok {test-number} - data, AllTrue() for: { true, true, true, true, true } contains only true
|
3299
|
+
# Usage of AllTrue range matcher
|
3300
|
+
ok {test-number} - data, AllTrue() for: { } contains only true
|
3301
|
+
# Usage of AllTrue range matcher
|
3302
|
+
ok {test-number} - data, !AllTrue() for: { true, true, false, true, true } not contains only true
|
3303
|
+
# Usage of AllTrue range matcher
|
3304
|
+
ok {test-number} - data, !AllTrue() for: { false, false, false, false, false } not contains only true
|
3305
|
+
# Usage of AllTrue range matcher
|
3306
|
+
ok {test-number} - data, AllTrue() for: { true, true, true, true, true } contains only true
|
3307
|
+
# Usage of AllTrue range matcher
|
3308
|
+
ok {test-number} - data, !AllTrue() for: { true, true, false, true, true } not contains only true
|
3309
|
+
# Usage of AllTrue range matcher
|
3310
|
+
ok {test-number} - data, !AllTrue() for: { false, false, false, false, false } not contains only true
|
3311
|
+
# Usage of AllTrue range matcher
|
3312
|
+
ok {test-number} - mocked, AllTrue() for: { true, true, true, true, true } contains only true
|
3313
|
+
# Usage of AllTrue range matcher
|
3314
|
+
ok {test-number} - mocked.m_derefed[0] for: true
|
3315
|
+
# Usage of AllTrue range matcher
|
3316
|
+
ok {test-number} - mocked.m_derefed[1] for: true
|
3317
|
+
# Usage of AllTrue range matcher
|
3318
|
+
ok {test-number} - mocked.m_derefed[2] for: true
|
3319
|
+
# Usage of AllTrue range matcher
|
3320
|
+
ok {test-number} - mocked.m_derefed[3] for: true
|
3321
|
+
# Usage of AllTrue range matcher
|
3322
|
+
ok {test-number} - mocked.m_derefed[4] for: true
|
3323
|
+
# Usage of AllTrue range matcher
|
3324
|
+
ok {test-number} - mocked, !AllTrue() for: { true, true, false, true, true } not contains only true
|
3325
|
+
# Usage of AllTrue range matcher
|
3326
|
+
ok {test-number} - mocked.m_derefed[0] for: true
|
3327
|
+
# Usage of AllTrue range matcher
|
3328
|
+
ok {test-number} - mocked.m_derefed[1] for: true
|
3329
|
+
# Usage of AllTrue range matcher
|
3330
|
+
ok {test-number} - mocked.m_derefed[2] for: true
|
3331
|
+
# Usage of AllTrue range matcher
|
3332
|
+
ok {test-number} - !(mocked.m_derefed[3]) for: !false
|
3333
|
+
# Usage of AllTrue range matcher
|
3334
|
+
ok {test-number} - !(mocked.m_derefed[4]) for: !false
|
3335
|
+
# Usage of AnyMatch range matcher
|
3336
|
+
ok {test-number} - data, AnyMatch(SizeIs(5)) for: { { 0, 1, 2, 3, 5 }, { 4, -3, -2, 5, 0 }, { 0, 0, 0, 5, 0 }, { 0, -5, 0, 5, 0 }, { 1, 0, 0, -1, 5 } } any match has size == 5
|
3337
|
+
# Usage of AnyMatch range matcher
|
3338
|
+
ok {test-number} - data, !AnyMatch(Contains(0) && Contains(10)) for: { { 0, 1, 2, 3, 5 }, { 4, -3, -2, 5, 0 }, { 0, 0, 0, 5, 0 }, { 0, -5, 0, 5, 0 }, { 1, 0, 0, -1, 5 } } not any match ( contains element 0 and contains element 10 )
|
3339
|
+
# Usage of AnyMatch range matcher
|
3340
|
+
ok {test-number} - needs_adl, AnyMatch( Predicate<int>( []( int elem ) { return elem < 3; } ) ) for: { 1, 2, 3, 4, 5 } any match matches undescribed predicate
|
3341
|
+
# Usage of AnyMatch range matcher
|
3342
|
+
ok {test-number} - mocked, !anyMatch for: { 1, 2, 3, 4, 5 } not any match matches undescribed predicate
|
3343
|
+
# Usage of AnyMatch range matcher
|
3344
|
+
ok {test-number} - mocked.m_derefed[0] for: true
|
3345
|
+
# Usage of AnyMatch range matcher
|
3346
|
+
ok {test-number} - mocked.m_derefed[1] for: true
|
3347
|
+
# Usage of AnyMatch range matcher
|
3348
|
+
ok {test-number} - mocked.m_derefed[2] for: true
|
3349
|
+
# Usage of AnyMatch range matcher
|
3350
|
+
ok {test-number} - mocked.m_derefed[3] for: true
|
3351
|
+
# Usage of AnyMatch range matcher
|
3352
|
+
ok {test-number} - mocked.m_derefed[4] for: true
|
3353
|
+
# Usage of AnyMatch range matcher
|
3354
|
+
ok {test-number} - mocked, anyMatch for: { 1, 2, 3, 4, 5 } any match matches undescribed predicate
|
3355
|
+
# Usage of AnyMatch range matcher
|
3356
|
+
ok {test-number} - mocked.m_derefed[0] for: true
|
3357
|
+
# Usage of AnyMatch range matcher
|
3358
|
+
ok {test-number} - !(mocked.m_derefed[1]) for: !false
|
3359
|
+
# Usage of AnyMatch range matcher
|
3360
|
+
ok {test-number} - !(mocked.m_derefed[2]) for: !false
|
3361
|
+
# Usage of AnyMatch range matcher
|
3362
|
+
ok {test-number} - !(mocked.m_derefed[3]) for: !false
|
3363
|
+
# Usage of AnyMatch range matcher
|
3364
|
+
ok {test-number} - !(mocked.m_derefed[4]) for: !false
|
3365
|
+
# Usage of AnyTrue range matcher
|
3366
|
+
ok {test-number} - data, AnyTrue() for: { true, true, true, true, true } contains at least one true
|
3367
|
+
# Usage of AnyTrue range matcher
|
3368
|
+
ok {test-number} - data, !AnyTrue() for: { } not contains at least one true
|
3369
|
+
# Usage of AnyTrue range matcher
|
3370
|
+
ok {test-number} - data, AnyTrue() for: { false, false, true, false, false } contains at least one true
|
3371
|
+
# Usage of AnyTrue range matcher
|
3372
|
+
ok {test-number} - data, !AnyTrue() for: { false, false, false, false, false } not contains at least one true
|
3373
|
+
# Usage of AnyTrue range matcher
|
3374
|
+
ok {test-number} - data, AnyTrue() for: { true, true, true, true, true } contains at least one true
|
3375
|
+
# Usage of AnyTrue range matcher
|
3376
|
+
ok {test-number} - data, AnyTrue() for: { false, false, true, false, false } contains at least one true
|
3377
|
+
# Usage of AnyTrue range matcher
|
3378
|
+
ok {test-number} - data, !AnyTrue() for: { false, false, false, false, false } not contains at least one true
|
3379
|
+
# Usage of AnyTrue range matcher
|
3380
|
+
ok {test-number} - mocked, AnyTrue() for: { false, false, false, false, true } contains at least one true
|
3381
|
+
# Usage of AnyTrue range matcher
|
3382
|
+
ok {test-number} - mocked.m_derefed[0] for: true
|
3383
|
+
# Usage of AnyTrue range matcher
|
3384
|
+
ok {test-number} - mocked.m_derefed[1] for: true
|
3385
|
+
# Usage of AnyTrue range matcher
|
3386
|
+
ok {test-number} - mocked.m_derefed[2] for: true
|
3387
|
+
# Usage of AnyTrue range matcher
|
3388
|
+
ok {test-number} - mocked.m_derefed[3] for: true
|
3389
|
+
# Usage of AnyTrue range matcher
|
3390
|
+
ok {test-number} - mocked.m_derefed[4] for: true
|
3391
|
+
# Usage of AnyTrue range matcher
|
3392
|
+
ok {test-number} - mocked, AnyTrue() for: { false, false, true, true, true } contains at least one true
|
3393
|
+
# Usage of AnyTrue range matcher
|
3394
|
+
ok {test-number} - mocked.m_derefed[0] for: true
|
3395
|
+
# Usage of AnyTrue range matcher
|
3396
|
+
ok {test-number} - mocked.m_derefed[1] for: true
|
3397
|
+
# Usage of AnyTrue range matcher
|
3398
|
+
ok {test-number} - mocked.m_derefed[2] for: true
|
3399
|
+
# Usage of AnyTrue range matcher
|
3400
|
+
ok {test-number} - !(mocked.m_derefed[3]) for: !false
|
3401
|
+
# Usage of AnyTrue range matcher
|
3402
|
+
ok {test-number} - !(mocked.m_derefed[4]) for: !false
|
3403
|
+
# Usage of NoneMatch range matcher
|
3404
|
+
ok {test-number} - data, NoneMatch(SizeIs(6)) for: { { 0, 1, 2, 3, 5 }, { 4, -3, -2, 5, 0 }, { 0, 0, 0, 5, 0 }, { 0, -5, 0, 5, 0 }, { 1, 0, 0, -1, 5 } } none match has size == 6
|
3405
|
+
# Usage of NoneMatch range matcher
|
3406
|
+
ok {test-number} - data, !NoneMatch(Contains(0) && Contains(1)) for: { { 0, 1, 2, 3, 5 }, { 4, -3, -2, 5, 0 }, { 0, 0, 0, 5, 0 }, { 0, -5, 0, 5, 0 }, { 1, 0, 0, -1, 5 } } not none match ( contains element 0 and contains element 1 )
|
3407
|
+
# Usage of NoneMatch range matcher
|
3408
|
+
ok {test-number} - needs_adl, NoneMatch( Predicate<int>( []( int elem ) { return elem > 6; } ) ) for: { 1, 2, 3, 4, 5 } none match matches undescribed predicate
|
3409
|
+
# Usage of NoneMatch range matcher
|
3410
|
+
ok {test-number} - mocked, noneMatch for: { 1, 2, 3, 4, 5 } none match matches undescribed predicate
|
3411
|
+
# Usage of NoneMatch range matcher
|
3412
|
+
ok {test-number} - mocked.m_derefed[0] for: true
|
3413
|
+
# Usage of NoneMatch range matcher
|
3414
|
+
ok {test-number} - mocked.m_derefed[1] for: true
|
3415
|
+
# Usage of NoneMatch range matcher
|
3416
|
+
ok {test-number} - mocked.m_derefed[2] for: true
|
3417
|
+
# Usage of NoneMatch range matcher
|
3418
|
+
ok {test-number} - mocked.m_derefed[3] for: true
|
3419
|
+
# Usage of NoneMatch range matcher
|
3420
|
+
ok {test-number} - mocked.m_derefed[4] for: true
|
3421
|
+
# Usage of NoneMatch range matcher
|
3422
|
+
ok {test-number} - mocked, !noneMatch for: { 1, 2, 3, 4, 5 } not none match matches undescribed predicate
|
3423
|
+
# Usage of NoneMatch range matcher
|
3424
|
+
ok {test-number} - mocked.m_derefed[0] for: true
|
3425
|
+
# Usage of NoneMatch range matcher
|
3426
|
+
ok {test-number} - !(mocked.m_derefed[1]) for: !false
|
3427
|
+
# Usage of NoneMatch range matcher
|
3428
|
+
ok {test-number} - !(mocked.m_derefed[2]) for: !false
|
3429
|
+
# Usage of NoneMatch range matcher
|
3430
|
+
ok {test-number} - !(mocked.m_derefed[3]) for: !false
|
3431
|
+
# Usage of NoneMatch range matcher
|
3432
|
+
ok {test-number} - !(mocked.m_derefed[4]) for: !false
|
3433
|
+
# Usage of NoneTrue range matcher
|
3434
|
+
ok {test-number} - data, !NoneTrue() for: { true, true, true, true, true } not contains no true
|
3435
|
+
# Usage of NoneTrue range matcher
|
3436
|
+
ok {test-number} - data, NoneTrue() for: { } contains no true
|
3437
|
+
# Usage of NoneTrue range matcher
|
3438
|
+
ok {test-number} - data, !NoneTrue() for: { false, false, true, false, false } not contains no true
|
3439
|
+
# Usage of NoneTrue range matcher
|
3440
|
+
ok {test-number} - data, NoneTrue() for: { false, false, false, false, false } contains no true
|
3441
|
+
# Usage of NoneTrue range matcher
|
3442
|
+
ok {test-number} - data, !NoneTrue() for: { true, true, true, true, true } not contains no true
|
3443
|
+
# Usage of NoneTrue range matcher
|
3444
|
+
ok {test-number} - data, !NoneTrue() for: { false, false, true, false, false } not contains no true
|
3445
|
+
# Usage of NoneTrue range matcher
|
3446
|
+
ok {test-number} - data, NoneTrue() for: { false, false, false, false, false } contains no true
|
3447
|
+
# Usage of NoneTrue range matcher
|
3448
|
+
ok {test-number} - mocked, NoneTrue() for: { false, false, false, false, false } contains no true
|
3449
|
+
# Usage of NoneTrue range matcher
|
3450
|
+
ok {test-number} - mocked.m_derefed[0] for: true
|
3451
|
+
# Usage of NoneTrue range matcher
|
3452
|
+
ok {test-number} - mocked.m_derefed[1] for: true
|
3453
|
+
# Usage of NoneTrue range matcher
|
3454
|
+
ok {test-number} - mocked.m_derefed[2] for: true
|
3455
|
+
# Usage of NoneTrue range matcher
|
3456
|
+
ok {test-number} - mocked.m_derefed[3] for: true
|
3457
|
+
# Usage of NoneTrue range matcher
|
3458
|
+
ok {test-number} - mocked.m_derefed[4] for: true
|
3459
|
+
# Usage of NoneTrue range matcher
|
3460
|
+
ok {test-number} - mocked, !NoneTrue() for: { false, false, true, true, true } not contains no true
|
3461
|
+
# Usage of NoneTrue range matcher
|
3462
|
+
ok {test-number} - mocked.m_derefed[0] for: true
|
3463
|
+
# Usage of NoneTrue range matcher
|
3464
|
+
ok {test-number} - mocked.m_derefed[1] for: true
|
3465
|
+
# Usage of NoneTrue range matcher
|
3466
|
+
ok {test-number} - mocked.m_derefed[2] for: true
|
3467
|
+
# Usage of NoneTrue range matcher
|
3468
|
+
ok {test-number} - !(mocked.m_derefed[3]) for: !false
|
3469
|
+
# Usage of NoneTrue range matcher
|
3470
|
+
ok {test-number} - !(mocked.m_derefed[4]) for: !false
|
3471
|
+
# Usage of RangeEquals range matcher
|
3472
|
+
ok {test-number} - empty_vector, RangeEquals( empty_vector ) for: { } elements are { }
|
3473
|
+
# Usage of RangeEquals range matcher
|
3474
|
+
ok {test-number} - empty_vector, !RangeEquals( non_empty_vector ) for: { } not elements are { 1 }
|
3475
|
+
# Usage of RangeEquals range matcher
|
3476
|
+
ok {test-number} - non_empty_vector, !RangeEquals( empty_vector ) for: { 1 } not elements are { }
|
3477
|
+
# Usage of RangeEquals range matcher
|
3478
|
+
ok {test-number} - non_empty_array, RangeEquals( non_empty_array ) for: { 1 } elements are { 1 }
|
3479
|
+
# Usage of RangeEquals range matcher
|
3480
|
+
ok {test-number} - array_a, RangeEquals( array_a ) for: { 1, 2, 3 } elements are { 1, 2, 3 }
|
3481
|
+
# Usage of RangeEquals range matcher
|
3482
|
+
ok {test-number} - array_a, !RangeEquals( array_b ) for: { 1, 2, 3 } not elements are { 2, 2, 3 }
|
3483
|
+
# Usage of RangeEquals range matcher
|
3484
|
+
ok {test-number} - array_a, !RangeEquals( array_c ) for: { 1, 2, 3 } not elements are { 1, 2, 2 }
|
3485
|
+
# Usage of RangeEquals range matcher
|
3486
|
+
ok {test-number} - vector_a, !RangeEquals( vector_b ) for: { 1, 2, 3 } not elements are { 1, 2, 3, 4 }
|
3487
|
+
# Usage of RangeEquals range matcher
|
3488
|
+
ok {test-number} - vector_a, RangeEquals( vector_a_plus_1, close_enough ) for: { 1, 2, 3 } elements are { 2, 3, 4 }
|
3489
|
+
# Usage of RangeEquals range matcher
|
3490
|
+
ok {test-number} - vector_a, !RangeEquals( vector_b, close_enough ) for: { 1, 2, 3 } not elements are { 3, 3, 4 }
|
3491
|
+
# Usage of RangeEquals range matcher
|
3492
|
+
ok {test-number} - needs_adl1, RangeEquals( needs_adl2 ) for: { 1, 2, 3, 4, 5 } elements are { 1, 2, 3, 4, 5 }
|
3493
|
+
# Usage of RangeEquals range matcher
|
3494
|
+
ok {test-number} - needs_adl1, RangeEquals( needs_adl3, []( int l, int r ) { return l + 1 == r; } ) for: { 1, 2, 3, 4, 5 } elements are { 2, 3, 4, 5, 6 }
|
3495
|
+
# Usage of RangeEquals range matcher
|
3496
|
+
ok {test-number} - mocked1, !RangeEquals( arr ) for: { 1, 2, 3, 4 } not elements are { 1, 2, 4, 4 }
|
3497
|
+
# Usage of RangeEquals range matcher
|
3498
|
+
ok {test-number} - mocked1.m_derefed[0] for: true
|
3499
|
+
# Usage of RangeEquals range matcher
|
3500
|
+
ok {test-number} - mocked1.m_derefed[1] for: true
|
3501
|
+
# Usage of RangeEquals range matcher
|
3502
|
+
ok {test-number} - mocked1.m_derefed[2] for: true
|
3503
|
+
# Usage of RangeEquals range matcher
|
3504
|
+
ok {test-number} - !(mocked1.m_derefed[3]) for: !false
|
3505
|
+
# Usage of RangeEquals range matcher
|
3506
|
+
ok {test-number} - mocked1, RangeEquals( arr ) for: { 1, 2, 3, 4 } elements are { 1, 2, 3, 4 }
|
3507
|
+
# Usage of RangeEquals range matcher
|
3508
|
+
ok {test-number} - mocked1.m_derefed[0] for: true
|
3509
|
+
# Usage of RangeEquals range matcher
|
3510
|
+
ok {test-number} - mocked1.m_derefed[1] for: true
|
3511
|
+
# Usage of RangeEquals range matcher
|
3512
|
+
ok {test-number} - mocked1.m_derefed[2] for: true
|
3513
|
+
# Usage of RangeEquals range matcher
|
3514
|
+
ok {test-number} - mocked1.m_derefed[3] for: true
|
3515
|
+
# Usage of UnorderedRangeEquals range matcher
|
3516
|
+
ok {test-number} - empty_vector, UnorderedRangeEquals( empty_vector ) for: { } unordered elements are { }
|
3517
|
+
# Usage of UnorderedRangeEquals range matcher
|
3518
|
+
ok {test-number} - empty_vector, !UnorderedRangeEquals( non_empty_vector ) for: { } not unordered elements are { 1 }
|
3519
|
+
# Usage of UnorderedRangeEquals range matcher
|
3520
|
+
ok {test-number} - non_empty_vector, !UnorderedRangeEquals( empty_vector ) for: { 1 } not unordered elements are { }
|
3521
|
+
# Usage of UnorderedRangeEquals range matcher
|
3522
|
+
ok {test-number} - non_empty_array, UnorderedRangeEquals( non_empty_array ) for: { 1 } unordered elements are { 1 }
|
3523
|
+
# Usage of UnorderedRangeEquals range matcher
|
3524
|
+
ok {test-number} - array_a, UnorderedRangeEquals( array_a ) for: { 1, 2, 3 } unordered elements are { 1, 2, 3 }
|
3525
|
+
# Usage of UnorderedRangeEquals range matcher
|
3526
|
+
ok {test-number} - array_a, !UnorderedRangeEquals( array_b ) for: { 1, 2, 3 } not unordered elements are { 2, 2, 3 }
|
3527
|
+
# Usage of UnorderedRangeEquals range matcher
|
3528
|
+
ok {test-number} - vector_a, !UnorderedRangeEquals( vector_b ) for: { 1, 2, 3 } not unordered elements are { 1, 2, 3, 4 }
|
3529
|
+
# Usage of UnorderedRangeEquals range matcher
|
3530
|
+
ok {test-number} - vector_a, UnorderedRangeEquals( vector_a_plus_1, close_enough ) for: { 1, 10, 20 } unordered elements are { 11, 21, 2 }
|
3531
|
+
# Usage of UnorderedRangeEquals range matcher
|
3532
|
+
ok {test-number} - vector_a, !UnorderedRangeEquals( vector_b, close_enough ) for: { 1, 10, 21 } not unordered elements are { 11, 21, 3 }
|
3533
|
+
# Usage of UnorderedRangeEquals range matcher
|
3534
|
+
ok {test-number} - needs_adl1, UnorderedRangeEquals( needs_adl2 ) for: { 1, 2, 3, 4, 5 } unordered elements are { 1, 2, 3, 4, 5 }
|
3535
|
+
# Usage of the SizeIs range matcher
|
3536
|
+
ok {test-number} - empty_vec, SizeIs(0) for: { } has size == 0
|
3537
|
+
# Usage of the SizeIs range matcher
|
3538
|
+
ok {test-number} - empty_vec, !SizeIs(2) for: { } not has size == 2
|
3539
|
+
# Usage of the SizeIs range matcher
|
3540
|
+
ok {test-number} - empty_vec, SizeIs(Lt(2)) for: { } size matches is less than 2
|
3541
|
+
# Usage of the SizeIs range matcher
|
3542
|
+
ok {test-number} - arr, SizeIs(2) for: { 0, 0 } has size == 2
|
3543
|
+
# Usage of the SizeIs range matcher
|
3544
|
+
ok {test-number} - arr, SizeIs( Lt(3)) for: { 0, 0 } size matches is less than 3
|
3545
|
+
# Usage of the SizeIs range matcher
|
3546
|
+
ok {test-number} - arr, !SizeIs(!Lt(3)) for: { 0, 0 } not size matches not is less than 3
|
3547
|
+
# Usage of the SizeIs range matcher
|
3548
|
+
ok {test-number} - map, SizeIs(3) for: { {?}, {?}, {?} } has size == 3
|
3549
|
+
# Usage of the SizeIs range matcher
|
3550
|
+
ok {test-number} - unrelated::ADL_size{}, SizeIs(12) for: {?} has size == 12
|
3551
|
+
# Usage of the SizeIs range matcher
|
3552
|
+
ok {test-number} - has_size{}, SizeIs(13) for: {?} has size == 13
|
3553
|
+
# Use a custom approx
|
3554
|
+
ok {test-number} - d == approx( 1.23 ) for: 1.23 == Approx( 1.23 )
|
3555
|
+
# Use a custom approx
|
3556
|
+
ok {test-number} - d == approx( 1.22 ) for: 1.23 == Approx( 1.22 )
|
3557
|
+
# Use a custom approx
|
3558
|
+
ok {test-number} - d == approx( 1.24 ) for: 1.23 == Approx( 1.24 )
|
3559
|
+
# Use a custom approx
|
3560
|
+
ok {test-number} - d != approx( 1.25 ) for: 1.23 != Approx( 1.25 )
|
3561
|
+
# Use a custom approx
|
3562
|
+
ok {test-number} - approx( d ) == 1.23 for: Approx( 1.23 ) == 1.23
|
3563
|
+
# Use a custom approx
|
3564
|
+
ok {test-number} - approx( d ) == 1.22 for: Approx( 1.23 ) == 1.22
|
3565
|
+
# Use a custom approx
|
3566
|
+
ok {test-number} - approx( d ) == 1.24 for: Approx( 1.23 ) == 1.24
|
3567
|
+
# Use a custom approx
|
3568
|
+
ok {test-number} - approx( d ) != 1.25 for: Approx( 1.23 ) != 1.25
|
3569
|
+
# Variadic macros
|
3570
|
+
ok {test-number} - with 1 message: 'no assertions'
|
3571
|
+
# Vector Approx matcher
|
3572
|
+
ok {test-number} - empty, Approx( empty ) for: { } is approx: { }
|
3573
|
+
# Vector Approx matcher
|
3574
|
+
ok {test-number} - v1, Approx( v1 ) for: { 1.0, 2.0, 3.0 } is approx: { 1.0, 2.0, 3.0 }
|
3575
|
+
# Vector Approx matcher
|
3576
|
+
ok {test-number} - v1, Approx<double>( { 1., 2., 3. } ) for: { 1.0, 2.0, 3.0 } is approx: { 1.0, 2.0, 3.0 }
|
3577
|
+
# Vector Approx matcher
|
3578
|
+
ok {test-number} - v1, !Approx( temp ) for: { 1.0, 2.0, 3.0 } not is approx: { 1.0, 2.0, 3.0, 4.0 }
|
3579
|
+
# Vector Approx matcher
|
3580
|
+
ok {test-number} - v1, !Approx( v2 ) for: { 1.0, 2.0, 3.0 } not is approx: { 1.5, 2.5, 3.5 }
|
3581
|
+
# Vector Approx matcher
|
3582
|
+
ok {test-number} - v1, Approx( v2 ).margin( 0.5 ) for: { 1.0, 2.0, 3.0 } is approx: { 1.5, 2.5, 3.5 }
|
3583
|
+
# Vector Approx matcher
|
3584
|
+
ok {test-number} - v1, Approx( v2 ).epsilon( 0.5 ) for: { 1.0, 2.0, 3.0 } is approx: { 1.5, 2.5, 3.5 }
|
3585
|
+
# Vector Approx matcher
|
3586
|
+
ok {test-number} - v1, Approx( v2 ).epsilon( 0.1 ).scale( 500 ) for: { 1.0, 2.0, 3.0 } is approx: { 1.5, 2.5, 3.5 }
|
3587
|
+
# Vector Approx matcher -- failing
|
3588
|
+
not ok {test-number} - empty, Approx( t1 ) for: { } is approx: { 1.0, 2.0 }
|
3589
|
+
# Vector Approx matcher -- failing
|
3590
|
+
not ok {test-number} - v1, Approx( v2 ) for: { 2.0, 4.0, 6.0 } is approx: { 1.0, 3.0, 5.0 }
|
3591
|
+
# Vector matchers
|
3592
|
+
ok {test-number} - v, VectorContains( 1 ) for: { 1, 2, 3 } Contains: 1
|
3593
|
+
# Vector matchers
|
3594
|
+
ok {test-number} - v, VectorContains( 2 ) for: { 1, 2, 3 } Contains: 2
|
3595
|
+
# Vector matchers
|
3596
|
+
ok {test-number} - v5, ( VectorContains<int, CustomAllocator<int>>( 2 ) ) for: { 1, 2, 3 } Contains: 2
|
3597
|
+
# Vector matchers
|
3598
|
+
ok {test-number} - v, Contains( v2 ) for: { 1, 2, 3 } Contains: { 1, 2 }
|
3599
|
+
# Vector matchers
|
3600
|
+
ok {test-number} - v, Contains<int>( { 1, 2 } ) for: { 1, 2, 3 } Contains: { 1, 2 }
|
3601
|
+
# Vector matchers
|
3602
|
+
ok {test-number} - v5, ( Contains<int, std::allocator<int>, CustomAllocator<int>>( v2 ) ) for: { 1, 2, 3 } Contains: { 1, 2 }
|
3603
|
+
# Vector matchers
|
3604
|
+
ok {test-number} - v, Contains( v2 ) for: { 1, 2, 3 } Contains: { 1, 2, 3 }
|
3605
|
+
# Vector matchers
|
3606
|
+
ok {test-number} - v, Contains( empty ) for: { 1, 2, 3 } Contains: { }
|
3607
|
+
# Vector matchers
|
3608
|
+
ok {test-number} - empty, Contains( empty ) for: { } Contains: { }
|
3609
|
+
# Vector matchers
|
3610
|
+
ok {test-number} - v5, ( Contains<int, std::allocator<int>, CustomAllocator<int>>( v2 ) ) for: { 1, 2, 3 } Contains: { 1, 2, 3 }
|
3611
|
+
# Vector matchers
|
3612
|
+
ok {test-number} - v5, Contains( v6 ) for: { 1, 2, 3 } Contains: { 1, 2 }
|
3613
|
+
# Vector matchers
|
3614
|
+
ok {test-number} - v, VectorContains( 1 ) && VectorContains( 2 ) for: { 1, 2, 3 } ( Contains: 1 and Contains: 2 )
|
3615
|
+
# Vector matchers
|
3616
|
+
ok {test-number} - v, Equals( v ) for: { 1, 2, 3 } Equals: { 1, 2, 3 }
|
3617
|
+
# Vector matchers
|
3618
|
+
ok {test-number} - empty, Equals( empty ) for: { } Equals: { }
|
3619
|
+
# Vector matchers
|
3620
|
+
ok {test-number} - v, Equals<int>( { 1, 2, 3 } ) for: { 1, 2, 3 } Equals: { 1, 2, 3 }
|
3621
|
+
# Vector matchers
|
3622
|
+
ok {test-number} - v, Equals( v2 ) for: { 1, 2, 3 } Equals: { 1, 2, 3 }
|
3623
|
+
# Vector matchers
|
3624
|
+
ok {test-number} - v5, ( Equals<int, std::allocator<int>, CustomAllocator<int>>( v2 ) ) for: { 1, 2, 3 } Equals: { 1, 2, 3 }
|
3625
|
+
# Vector matchers
|
3626
|
+
ok {test-number} - v5, Equals( v6 ) for: { 1, 2, 3 } Equals: { 1, 2, 3 }
|
3627
|
+
# Vector matchers
|
3628
|
+
ok {test-number} - v, UnorderedEquals( v ) for: { 1, 2, 3 } UnorderedEquals: { 1, 2, 3 }
|
3629
|
+
# Vector matchers
|
3630
|
+
ok {test-number} - v, UnorderedEquals<int>( { 3, 2, 1 } ) for: { 1, 2, 3 } UnorderedEquals: { 3, 2, 1 }
|
3631
|
+
# Vector matchers
|
3632
|
+
ok {test-number} - empty, UnorderedEquals( empty ) for: { } UnorderedEquals: { }
|
3633
|
+
# Vector matchers
|
3634
|
+
ok {test-number} - permuted, UnorderedEquals( v ) for: { 1, 3, 2 } UnorderedEquals: { 1, 2, 3 }
|
3635
|
+
# Vector matchers
|
3636
|
+
ok {test-number} - permuted, UnorderedEquals( v ) for: { 2, 3, 1 } UnorderedEquals: { 1, 2, 3 }
|
3637
|
+
# Vector matchers
|
3638
|
+
ok {test-number} - v5, ( UnorderedEquals<int, std::allocator<int>, CustomAllocator<int>>( permuted ) ) for: { 1, 2, 3 } UnorderedEquals: { 2, 3, 1 }
|
3639
|
+
# Vector matchers
|
3640
|
+
ok {test-number} - v5_permuted, UnorderedEquals( v5 ) for: { 1, 3, 2 } UnorderedEquals: { 1, 2, 3 }
|
3641
|
+
# Vector matchers that fail
|
3642
|
+
not ok {test-number} - v, VectorContains( -1 ) for: { 1, 2, 3 } Contains: -1
|
3643
|
+
# Vector matchers that fail
|
3644
|
+
not ok {test-number} - empty, VectorContains( 1 ) for: { } Contains: 1
|
3645
|
+
# Vector matchers that fail
|
3646
|
+
not ok {test-number} - empty, Contains( v ) for: { } Contains: { 1, 2, 3 }
|
3647
|
+
# Vector matchers that fail
|
3648
|
+
not ok {test-number} - v, Contains( v2 ) for: { 1, 2, 3 } Contains: { 1, 2, 4 }
|
3649
|
+
# Vector matchers that fail
|
3650
|
+
not ok {test-number} - v, Equals( v2 ) for: { 1, 2, 3 } Equals: { 1, 2 }
|
3651
|
+
# Vector matchers that fail
|
3652
|
+
not ok {test-number} - v2, Equals( v ) for: { 1, 2 } Equals: { 1, 2, 3 }
|
3653
|
+
# Vector matchers that fail
|
3654
|
+
not ok {test-number} - empty, Equals( v ) for: { } Equals: { 1, 2, 3 }
|
3655
|
+
# Vector matchers that fail
|
3656
|
+
not ok {test-number} - v, Equals( empty ) for: { 1, 2, 3 } Equals: { }
|
3657
|
+
# Vector matchers that fail
|
3658
|
+
not ok {test-number} - v, UnorderedEquals( empty ) for: { 1, 2, 3 } UnorderedEquals: { }
|
3659
|
+
# Vector matchers that fail
|
3660
|
+
not ok {test-number} - empty, UnorderedEquals( v ) for: { } UnorderedEquals: { 1, 2, 3 }
|
3661
|
+
# Vector matchers that fail
|
3662
|
+
not ok {test-number} - permuted, UnorderedEquals( v ) for: { 1, 3 } UnorderedEquals: { 1, 2, 3 }
|
3663
|
+
# Vector matchers that fail
|
3664
|
+
not ok {test-number} - permuted, UnorderedEquals( v ) for: { 3, 1 } UnorderedEquals: { 1, 2, 3 }
|
3665
|
+
# When checked exceptions are thrown they can be expected or unexpected
|
3666
|
+
ok {test-number} - thisThrows(), std::domain_error
|
3667
|
+
# When checked exceptions are thrown they can be expected or unexpected
|
3668
|
+
ok {test-number} - thisDoesntThrow()
|
3669
|
+
# When checked exceptions are thrown they can be expected or unexpected
|
3670
|
+
ok {test-number} - thisThrows()
|
3671
|
+
# When unchecked exceptions are thrown directly they are always failures
|
3672
|
+
not ok {test-number} - unexpected exception with message: 'unexpected exception'
|
3673
|
+
# When unchecked exceptions are thrown during a CHECK the test should continue
|
3674
|
+
not ok {test-number} - unexpected exception with message: 'expected exception'; expression was: thisThrows() == 0
|
3675
|
+
# When unchecked exceptions are thrown during a REQUIRE the test should abort fail
|
3676
|
+
not ok {test-number} - unexpected exception with message: 'expected exception'; expression was: thisThrows() == 0
|
3677
|
+
# When unchecked exceptions are thrown from functions they are always failures
|
3678
|
+
not ok {test-number} - unexpected exception with message: 'expected exception'; expression was: thisThrows() == 0
|
3679
|
+
# When unchecked exceptions are thrown from sections they are always failures
|
3680
|
+
not ok {test-number} - unexpected exception with message: 'unexpected exception'
|
3681
|
+
# X/level/0/a
|
3682
|
+
ok {test-number} -
|
3683
|
+
# X/level/0/b
|
3684
|
+
ok {test-number} -
|
3685
|
+
# X/level/1/a
|
3686
|
+
ok {test-number} -
|
3687
|
+
# X/level/1/b
|
3688
|
+
ok {test-number} -
|
3689
|
+
# XmlEncode
|
3690
|
+
ok {test-number} - encode( "normal string" ) == "normal string" for: "normal string" == "normal string"
|
3691
|
+
# XmlEncode
|
3692
|
+
ok {test-number} - encode( "" ) == "" for: "" == ""
|
3693
|
+
# XmlEncode
|
3694
|
+
ok {test-number} - encode( "smith & jones" ) == "smith & jones" for: "smith & jones" == "smith & jones"
|
3695
|
+
# XmlEncode
|
3696
|
+
ok {test-number} - encode( "smith < jones" ) == "smith < jones" for: "smith < jones" == "smith < jones"
|
3697
|
+
# XmlEncode
|
3698
|
+
ok {test-number} - encode( "smith > jones" ) == "smith > jones" for: "smith > jones" == "smith > jones"
|
3699
|
+
# XmlEncode
|
3700
|
+
ok {test-number} - encode( "smith ]]> jones" ) == "smith ]]> jones" for: "smith ]]> jones" == "smith ]]> jones"
|
3701
|
+
# XmlEncode
|
3702
|
+
ok {test-number} - encode( stringWithQuotes ) == stringWithQuotes for: "don't "quote" me on that" == "don't "quote" me on that"
|
3703
|
+
# XmlEncode
|
3704
|
+
ok {test-number} - encode( stringWithQuotes, Catch::XmlEncode::ForAttributes ) == "don't "quote" me on that" for: "don't "quote" me on that" == "don't "quote" me on that"
|
3705
|
+
# XmlEncode
|
3706
|
+
ok {test-number} - encode( "[\x01]" ) == "[\\x01]" for: "[\x01]" == "[\x01]"
|
3707
|
+
# XmlEncode
|
3708
|
+
ok {test-number} - encode( "[\x7F]" ) == "[\\x7F]" for: "[\x7F]" == "[\x7F]"
|
3709
|
+
# XmlWriter writes boolean attributes as true/false
|
3710
|
+
ok {test-number} - stream.str(), ContainsSubstring(R"(attr1="true")") && ContainsSubstring(R"(attr2="false")") for: "<?xml version="1.0" encoding="UTF-8"?> <Element1 attr1="true" attr2="false"/> " ( contains: "attr1="true"" and contains: "attr2="false"" )
|
3711
|
+
# a succeeding test can still be skipped
|
3712
|
+
ok {test-number} -
|
3713
|
+
# a succeeding test can still be skipped
|
3714
|
+
ok {test-number} - # SKIP
|
3715
|
+
# analyse no analysis
|
3716
|
+
ok {test-number} - analysis.mean.point.count() == 23 for: 23.0 == 23
|
3717
|
+
# analyse no analysis
|
3718
|
+
ok {test-number} - analysis.mean.lower_bound.count() == 23 for: 23.0 == 23
|
3719
|
+
# analyse no analysis
|
3720
|
+
ok {test-number} - analysis.mean.upper_bound.count() == 23 for: 23.0 == 23
|
3721
|
+
# analyse no analysis
|
3722
|
+
ok {test-number} - analysis.standard_deviation.point.count() == 0 for: 0.0 == 0
|
3723
|
+
# analyse no analysis
|
3724
|
+
ok {test-number} - analysis.standard_deviation.lower_bound.count() == 0 for: 0.0 == 0
|
3725
|
+
# analyse no analysis
|
3726
|
+
ok {test-number} - analysis.standard_deviation.upper_bound.count() == 0 for: 0.0 == 0
|
3727
|
+
# analyse no analysis
|
3728
|
+
ok {test-number} - analysis.outliers.total() == 0 for: 0 == 0
|
3729
|
+
# analyse no analysis
|
3730
|
+
ok {test-number} - analysis.outliers.low_mild == 0 for: 0 == 0
|
3731
|
+
# analyse no analysis
|
3732
|
+
ok {test-number} - analysis.outliers.low_severe == 0 for: 0 == 0
|
3733
|
+
# analyse no analysis
|
3734
|
+
ok {test-number} - analysis.outliers.high_mild == 0 for: 0 == 0
|
3735
|
+
# analyse no analysis
|
3736
|
+
ok {test-number} - analysis.outliers.high_severe == 0 for: 0 == 0
|
3737
|
+
# analyse no analysis
|
3738
|
+
ok {test-number} - analysis.outliers.samples_seen == 0 for: 0 == 0
|
3739
|
+
# analyse no analysis
|
3740
|
+
ok {test-number} - analysis.outlier_variance == 0 for: 0.0 == 0
|
3741
|
+
# array<int, N> -> toString
|
3742
|
+
ok {test-number} - Catch::Detail::stringify( empty ) == "{ }" for: "{ }" == "{ }"
|
3743
|
+
# array<int, N> -> toString
|
3744
|
+
ok {test-number} - Catch::Detail::stringify( oneValue ) == "{ 42 }" for: "{ 42 }" == "{ 42 }"
|
3745
|
+
# array<int, N> -> toString
|
3746
|
+
ok {test-number} - Catch::Detail::stringify( twoValues ) == "{ 42, 250 }" for: "{ 42, 250 }" == "{ 42, 250 }"
|
3747
|
+
# benchmark function call
|
3748
|
+
ok {test-number} - model.started == 1 for: 1 == 1
|
3749
|
+
# benchmark function call
|
3750
|
+
ok {test-number} - model.finished == 0 for: 0 == 0
|
3751
|
+
# benchmark function call
|
3752
|
+
ok {test-number} - model.started == 1 for: 1 == 1
|
3753
|
+
# benchmark function call
|
3754
|
+
ok {test-number} - model.finished == 1 for: 1 == 1
|
3755
|
+
# benchmark function call
|
3756
|
+
ok {test-number} - called == 1 for: 1 == 1
|
3757
|
+
# benchmark function call
|
3758
|
+
ok {test-number} - model.started == 0 for: 0 == 0
|
3759
|
+
# benchmark function call
|
3760
|
+
ok {test-number} - model.finished == 0 for: 0 == 0
|
3761
|
+
# benchmark function call
|
3762
|
+
ok {test-number} - model.started == 0 for: 0 == 0
|
3763
|
+
# benchmark function call
|
3764
|
+
ok {test-number} - model.finished == 0 for: 0 == 0
|
3765
|
+
# benchmark function call
|
3766
|
+
ok {test-number} - called == 1 for: 1 == 1
|
3767
|
+
# boolean member
|
3768
|
+
ok {test-number} - obj.prop != 0 for: 0x<hex digits> != 0
|
3769
|
+
# checkedElse
|
3770
|
+
ok {test-number} - flag for: true
|
3771
|
+
# checkedElse
|
3772
|
+
ok {test-number} - testCheckedElse( true ) for: true
|
3773
|
+
# checkedElse, failing
|
3774
|
+
ok {test-number} - flag for: false # TODO
|
3775
|
+
# checkedElse, failing
|
3776
|
+
not ok {test-number} - testCheckedElse( false ) for: false
|
3777
|
+
# checkedIf
|
3778
|
+
ok {test-number} - flag for: true
|
3779
|
+
# checkedIf
|
3780
|
+
ok {test-number} - testCheckedIf( true ) for: true
|
3781
|
+
# checkedIf, failing
|
3782
|
+
ok {test-number} - flag for: false # TODO
|
3783
|
+
# checkedIf, failing
|
3784
|
+
not ok {test-number} - testCheckedIf( false ) for: false
|
3785
|
+
# classify_outliers
|
3786
|
+
ok {test-number} - o.samples_seen == static_cast<int>(x.size()) for: 6 == 6
|
3787
|
+
# classify_outliers
|
3788
|
+
ok {test-number} - o.low_severe == los for: 0 == 0
|
3789
|
+
# classify_outliers
|
3790
|
+
ok {test-number} - o.low_mild == lom for: 0 == 0
|
3791
|
+
# classify_outliers
|
3792
|
+
ok {test-number} - o.high_mild == him for: 0 == 0
|
3793
|
+
# classify_outliers
|
3794
|
+
ok {test-number} - o.high_severe == his for: 0 == 0
|
3795
|
+
# classify_outliers
|
3796
|
+
ok {test-number} - o.total() == los + lom + him + his for: 0 == 0
|
3797
|
+
# classify_outliers
|
3798
|
+
ok {test-number} - o.samples_seen == static_cast<int>(x.size()) for: 6 == 6
|
3799
|
+
# classify_outliers
|
3800
|
+
ok {test-number} - o.low_severe == los for: 1 == 1
|
3801
|
+
# classify_outliers
|
3802
|
+
ok {test-number} - o.low_mild == lom for: 0 == 0
|
3803
|
+
# classify_outliers
|
3804
|
+
ok {test-number} - o.high_mild == him for: 0 == 0
|
3805
|
+
# classify_outliers
|
3806
|
+
ok {test-number} - o.high_severe == his for: 0 == 0
|
3807
|
+
# classify_outliers
|
3808
|
+
ok {test-number} - o.total() == los + lom + him + his for: 1 == 1
|
3809
|
+
# classify_outliers
|
3810
|
+
ok {test-number} - o.samples_seen == static_cast<int>(x.size()) for: 6 == 6
|
3811
|
+
# classify_outliers
|
3812
|
+
ok {test-number} - o.low_severe == los for: 0 == 0
|
3813
|
+
# classify_outliers
|
3814
|
+
ok {test-number} - o.low_mild == lom for: 1 == 1
|
3815
|
+
# classify_outliers
|
3816
|
+
ok {test-number} - o.high_mild == him for: 0 == 0
|
3817
|
+
# classify_outliers
|
3818
|
+
ok {test-number} - o.high_severe == his for: 0 == 0
|
3819
|
+
# classify_outliers
|
3820
|
+
ok {test-number} - o.total() == los + lom + him + his for: 1 == 1
|
3821
|
+
# classify_outliers
|
3822
|
+
ok {test-number} - o.samples_seen == static_cast<int>(x.size()) for: 6 == 6
|
3823
|
+
# classify_outliers
|
3824
|
+
ok {test-number} - o.low_severe == los for: 0 == 0
|
3825
|
+
# classify_outliers
|
3826
|
+
ok {test-number} - o.low_mild == lom for: 0 == 0
|
3827
|
+
# classify_outliers
|
3828
|
+
ok {test-number} - o.high_mild == him for: 1 == 1
|
3829
|
+
# classify_outliers
|
3830
|
+
ok {test-number} - o.high_severe == his for: 0 == 0
|
3831
|
+
# classify_outliers
|
3832
|
+
ok {test-number} - o.total() == los + lom + him + his for: 1 == 1
|
3833
|
+
# classify_outliers
|
3834
|
+
ok {test-number} - o.samples_seen == static_cast<int>(x.size()) for: 6 == 6
|
3835
|
+
# classify_outliers
|
3836
|
+
ok {test-number} - o.low_severe == los for: 0 == 0
|
3837
|
+
# classify_outliers
|
3838
|
+
ok {test-number} - o.low_mild == lom for: 0 == 0
|
3839
|
+
# classify_outliers
|
3840
|
+
ok {test-number} - o.high_mild == him for: 0 == 0
|
3841
|
+
# classify_outliers
|
3842
|
+
ok {test-number} - o.high_severe == his for: 1 == 1
|
3843
|
+
# classify_outliers
|
3844
|
+
ok {test-number} - o.total() == los + lom + him + his for: 1 == 1
|
3845
|
+
# classify_outliers
|
3846
|
+
ok {test-number} - o.samples_seen == static_cast<int>(x.size()) for: 6 == 6
|
3847
|
+
# classify_outliers
|
3848
|
+
ok {test-number} - o.low_severe == los for: 1 == 1
|
3849
|
+
# classify_outliers
|
3850
|
+
ok {test-number} - o.low_mild == lom for: 0 == 0
|
3851
|
+
# classify_outliers
|
3852
|
+
ok {test-number} - o.high_mild == him for: 1 == 1
|
3853
|
+
# classify_outliers
|
3854
|
+
ok {test-number} - o.high_severe == his for: 0 == 0
|
3855
|
+
# classify_outliers
|
3856
|
+
ok {test-number} - o.total() == los + lom + him + his for: 2 == 2
|
3857
|
+
# comparisons between const int variables
|
3858
|
+
ok {test-number} - unsigned_char_var == 1 for: 1 == 1
|
3859
|
+
# comparisons between const int variables
|
3860
|
+
ok {test-number} - unsigned_short_var == 1 for: 1 == 1
|
3861
|
+
# comparisons between const int variables
|
3862
|
+
ok {test-number} - unsigned_int_var == 1 for: 1 == 1
|
3863
|
+
# comparisons between const int variables
|
3864
|
+
ok {test-number} - unsigned_long_var == 1 for: 1 == 1
|
3865
|
+
# comparisons between int variables
|
3866
|
+
ok {test-number} - long_var == unsigned_char_var for: 1 == 1
|
3867
|
+
# comparisons between int variables
|
3868
|
+
ok {test-number} - long_var == unsigned_short_var for: 1 == 1
|
3869
|
+
# comparisons between int variables
|
3870
|
+
ok {test-number} - long_var == unsigned_int_var for: 1 == 1
|
3871
|
+
# comparisons between int variables
|
3872
|
+
ok {test-number} - long_var == unsigned_long_var for: 1 == 1
|
3873
|
+
# convertToBits
|
3874
|
+
ok {test-number} - convertToBits( 0.f ) == 0 for: 0 == 0
|
3875
|
+
# convertToBits
|
3876
|
+
ok {test-number} - convertToBits( -0.f ) == ( 1ULL << 31 ) for: 2147483648 (0x<hex digits>) == 2147483648 (0x<hex digits>)
|
3877
|
+
# convertToBits
|
3878
|
+
ok {test-number} - convertToBits( 0. ) == 0 for: 0 == 0
|
3879
|
+
# convertToBits
|
3880
|
+
ok {test-number} - convertToBits( -0. ) == ( 1ULL << 63 ) for: 9223372036854775808 (0x<hex digits>) == 9223372036854775808 (0x<hex digits>)
|
3881
|
+
# convertToBits
|
3882
|
+
ok {test-number} - convertToBits( std::numeric_limits<float>::denorm_min() ) == 1 for: 1 == 1
|
3883
|
+
# convertToBits
|
3884
|
+
ok {test-number} - convertToBits( std::numeric_limits<double>::denorm_min() ) == 1 for: 1 == 1
|
3885
|
+
# dynamic skipping works with generators
|
3886
|
+
ok {test-number} - # SKIP 'skipping because answer = 41'
|
3887
|
+
# dynamic skipping works with generators
|
3888
|
+
ok {test-number} -
|
3889
|
+
# dynamic skipping works with generators
|
3890
|
+
ok {test-number} - # SKIP 'skipping because answer = 43'
|
3891
|
+
# empty tags are not allowed
|
3892
|
+
ok {test-number} - Catch::TestCaseInfo("", { "test with an empty tag", "[]" }, dummySourceLineInfo)
|
3893
|
+
# erfc_inv
|
3894
|
+
ok {test-number} - erfc_inv(1.103560) == Approx(-0.09203687623843015) for: -0.0920368762 == Approx( -0.0920368762 )
|
3895
|
+
# erfc_inv
|
3896
|
+
ok {test-number} - erfc_inv(1.067400) == Approx(-0.05980291115763361) for: -0.0598029112 == Approx( -0.0598029112 )
|
3897
|
+
# erfc_inv
|
3898
|
+
ok {test-number} - erfc_inv(0.050000) == Approx(1.38590382434967796) for: 1.3859038243 == Approx( 1.3859038243 )
|
3899
|
+
# estimate_clock_resolution
|
3900
|
+
ok {test-number} - res.mean.count() == rate for: 2000.0 == 2000 (0x<hex digits>)
|
3901
|
+
# estimate_clock_resolution
|
3902
|
+
ok {test-number} - res.outliers.total() == 0 for: 0 == 0
|
3903
|
+
# even more nested SECTION tests
|
3904
|
+
ok {test-number} -
|
3905
|
+
# even more nested SECTION tests
|
3906
|
+
ok {test-number} -
|
3907
|
+
# even more nested SECTION tests
|
3908
|
+
ok {test-number} -
|
3909
|
+
# failed assertions before SKIP cause test case to fail
|
3910
|
+
not ok {test-number} - 3 == 4
|
3911
|
+
# failed assertions before SKIP cause test case to fail
|
3912
|
+
ok {test-number} - # SKIP
|
3913
|
+
# failing for some generator values causes entire test case to fail
|
3914
|
+
not ok {test-number} - explicitly
|
3915
|
+
# failing for some generator values causes entire test case to fail
|
3916
|
+
ok {test-number} - # SKIP
|
3917
|
+
# failing for some generator values causes entire test case to fail
|
3918
|
+
not ok {test-number} - explicitly
|
3919
|
+
# failing for some generator values causes entire test case to fail
|
3920
|
+
ok {test-number} - # SKIP
|
3921
|
+
# failing in some unskipped sections causes entire test case to fail
|
3922
|
+
ok {test-number} - # SKIP
|
3923
|
+
# failing in some unskipped sections causes entire test case to fail
|
3924
|
+
not ok {test-number} - explicitly
|
3925
|
+
# is_unary_function
|
3926
|
+
ok {test-number} - with 1 message: 'Catch::Clara::Detail::is_unary_function<decltype(unary1)>::value'
|
3927
|
+
# is_unary_function
|
3928
|
+
ok {test-number} - with 1 message: 'Catch::Clara::Detail::is_unary_function<decltype(unary2)>::value'
|
3929
|
+
# is_unary_function
|
3930
|
+
ok {test-number} - with 1 message: 'Catch::Clara::Detail::is_unary_function<decltype(unary3)>::value'
|
3931
|
+
# is_unary_function
|
3932
|
+
ok {test-number} - with 1 message: 'Catch::Clara::Detail::is_unary_function<decltype(unary4)>::value'
|
3933
|
+
# is_unary_function
|
3934
|
+
ok {test-number} - with 1 message: 'Catch::Clara::Detail::is_unary_function<decltype(unary5)>::value'
|
3935
|
+
# is_unary_function
|
3936
|
+
ok {test-number} - with 1 message: 'Catch::Clara::Detail::is_unary_function<decltype(unary6)>::value'
|
3937
|
+
# is_unary_function
|
3938
|
+
ok {test-number} - with 1 message: '!(Catch::Clara::Detail::is_unary_function<decltype(binary1)>::value)'
|
3939
|
+
# is_unary_function
|
3940
|
+
ok {test-number} - with 1 message: '!(Catch::Clara::Detail::is_unary_function<decltype(binary2)>::value)'
|
3941
|
+
# is_unary_function
|
3942
|
+
ok {test-number} - with 1 message: '!(Catch::Clara::Detail::is_unary_function<decltype(nullary1)>::value)'
|
3943
|
+
# is_unary_function
|
3944
|
+
ok {test-number} - with 1 message: '!(Catch::Clara::Detail::is_unary_function<decltype(nullary2)>::value)'
|
3945
|
+
# is_unary_function
|
3946
|
+
ok {test-number} - with 1 message: '!(Catch::Clara::Detail::is_unary_function<int>::value)'
|
3947
|
+
# is_unary_function
|
3948
|
+
ok {test-number} - with 1 message: '!(Catch::Clara::Detail::is_unary_function<std::string const&>::value)'
|
3949
|
+
# just failure
|
3950
|
+
not ok {test-number} - explicitly with 1 message: 'Previous info should not be seen'
|
3951
|
+
# just failure after unscoped info
|
3952
|
+
not ok {test-number} - explicitly with 1 message: 'previous unscoped info SHOULD not be seen'
|
3953
|
+
# long long
|
3954
|
+
ok {test-number} - l == std::numeric_limits<long long>::max() for: 9223372036854775807 (0x<hex digits>) == 9223372036854775807 (0x<hex digits>)
|
3955
|
+
# looped SECTION tests
|
3956
|
+
not ok {test-number} - b > a for: 0 > 1
|
3957
|
+
# looped SECTION tests
|
3958
|
+
not ok {test-number} - b > a for: 1 > 1
|
3959
|
+
# looped SECTION tests
|
3960
|
+
ok {test-number} - b > a for: 2 > 1
|
3961
|
+
# looped SECTION tests
|
3962
|
+
ok {test-number} - b > a for: 3 > 1
|
3963
|
+
# looped SECTION tests
|
3964
|
+
ok {test-number} - b > a for: 4 > 1
|
3965
|
+
# looped SECTION tests
|
3966
|
+
ok {test-number} - b > a for: 5 > 1
|
3967
|
+
# looped SECTION tests
|
3968
|
+
ok {test-number} - b > a for: 6 > 1
|
3969
|
+
# looped SECTION tests
|
3970
|
+
ok {test-number} - b > a for: 7 > 1
|
3971
|
+
# looped SECTION tests
|
3972
|
+
ok {test-number} - b > a for: 8 > 1
|
3973
|
+
# looped SECTION tests
|
3974
|
+
ok {test-number} - b > a for: 9 > 1
|
3975
|
+
# looped tests
|
3976
|
+
not ok {test-number} - ( fib[i] % 2 ) == 0 for: 1 == 0 with 1 message: 'Testing if fib[0] (1) is even'
|
3977
|
+
# looped tests
|
3978
|
+
not ok {test-number} - ( fib[i] % 2 ) == 0 for: 1 == 0 with 1 message: 'Testing if fib[1] (1) is even'
|
3979
|
+
# looped tests
|
3980
|
+
ok {test-number} - ( fib[i] % 2 ) == 0 for: 0 == 0 with 1 message: 'Testing if fib[2] (2) is even'
|
3981
|
+
# looped tests
|
3982
|
+
not ok {test-number} - ( fib[i] % 2 ) == 0 for: 1 == 0 with 1 message: 'Testing if fib[3] (3) is even'
|
3983
|
+
# looped tests
|
3984
|
+
not ok {test-number} - ( fib[i] % 2 ) == 0 for: 1 == 0 with 1 message: 'Testing if fib[4] (5) is even'
|
3985
|
+
# looped tests
|
3986
|
+
ok {test-number} - ( fib[i] % 2 ) == 0 for: 0 == 0 with 1 message: 'Testing if fib[5] (8) is even'
|
3987
|
+
# looped tests
|
3988
|
+
not ok {test-number} - ( fib[i] % 2 ) == 0 for: 1 == 0 with 1 message: 'Testing if fib[6] (13) is even'
|
3989
|
+
# looped tests
|
3990
|
+
not ok {test-number} - ( fib[i] % 2 ) == 0 for: 1 == 0 with 1 message: 'Testing if fib[7] (21) is even'
|
3991
|
+
# makeStream recognizes %debug stream name
|
3992
|
+
ok {test-number} - Catch::makeStream( "%debug" )
|
3993
|
+
# make_unique reimplementation
|
3994
|
+
ok {test-number} - !(lval.has_moved) for: !false
|
3995
|
+
# make_unique reimplementation
|
3996
|
+
ok {test-number} - rval.has_moved for: true
|
3997
|
+
# make_unique reimplementation
|
3998
|
+
ok {test-number} - *ptr == std::tuple<int, double, int>{1, 2., 3} for: {?} == {?}
|
3999
|
+
# mean
|
4000
|
+
ok {test-number} - m == 19. for: 19.0 == 19.0
|
4001
|
+
# measure
|
4002
|
+
ok {test-number} - x == 17 for: 17 == 17
|
4003
|
+
# measure
|
4004
|
+
ok {test-number} - x == 23 for: 23 == 23
|
4005
|
+
# measure
|
4006
|
+
ok {test-number} - r.elapsed.count() == 42 for: 42 == 42
|
4007
|
+
# measure
|
4008
|
+
ok {test-number} - r.result == 23 for: 23 == 23
|
4009
|
+
# measure
|
4010
|
+
ok {test-number} - r.iterations == 1 for: 1 == 1
|
4011
|
+
# measure
|
4012
|
+
ok {test-number} - s.elapsed.count() == 69 for: 69 == 69
|
4013
|
+
# measure
|
4014
|
+
ok {test-number} - s.result == 17 for: 17 == 17
|
4015
|
+
# measure
|
4016
|
+
ok {test-number} - s.iterations == 1 for: 1 == 1
|
4017
|
+
# mix info, unscoped info and warning
|
4018
|
+
warning {test-number} - 'info' with 2 messages: 'unscoped info' and 'and warn may mix'
|
4019
|
+
# mix info, unscoped info and warning
|
4020
|
+
warning {test-number} - 'info' with 2 messages: 'unscoped info' and 'they are not cleared after warnings'
|
4021
|
+
# more nested SECTION tests
|
4022
|
+
not ok {test-number} - a == b for: 1 == 2
|
4023
|
+
# more nested SECTION tests
|
4024
|
+
ok {test-number} - a != b for: 1 != 2
|
4025
|
+
# more nested SECTION tests
|
4026
|
+
ok {test-number} - a < b for: 1 < 2
|
4027
|
+
# nested SECTION tests
|
4028
|
+
ok {test-number} - a != b for: 1 != 2
|
4029
|
+
# nested SECTION tests
|
4030
|
+
ok {test-number} - b != a for: 2 != 1
|
4031
|
+
# nested SECTION tests
|
4032
|
+
ok {test-number} - a != b for: 1 != 2
|
4033
|
+
# nested sections can be skipped dynamically at runtime
|
4034
|
+
ok {test-number} - # SKIP
|
4035
|
+
# non streamable - with conv. op
|
4036
|
+
ok {test-number} - s == "7" for: "7" == "7"
|
4037
|
+
# non-copyable objects
|
4038
|
+
ok {test-number} - ti == typeid(int) for: {?} == {?}
|
4039
|
+
# normal_cdf
|
4040
|
+
ok {test-number} - normal_cdf(0.000000) == Approx(0.50000000000000000) for: 0.5 == Approx( 0.5 )
|
4041
|
+
# normal_cdf
|
4042
|
+
ok {test-number} - normal_cdf(1.000000) == Approx(0.84134474606854293) for: 0.8413447461 == Approx( 0.8413447461 )
|
4043
|
+
# normal_cdf
|
4044
|
+
ok {test-number} - normal_cdf(-1.000000) == Approx(0.15865525393145705) for: 0.1586552539 == Approx( 0.1586552539 )
|
4045
|
+
# normal_cdf
|
4046
|
+
ok {test-number} - normal_cdf(2.809729) == Approx(0.99752083845315409) for: 0.9975208385 == Approx( 0.9975208385 )
|
4047
|
+
# normal_cdf
|
4048
|
+
ok {test-number} - normal_cdf(-1.352570) == Approx(0.08809652095066035) for: 0.088096521 == Approx( 0.088096521 )
|
4049
|
+
# normal_quantile
|
4050
|
+
ok {test-number} - normal_quantile(0.551780) == Approx(0.13015979861484198) for: 0.1301597986 == Approx( 0.1301597986 )
|
4051
|
+
# normal_quantile
|
4052
|
+
ok {test-number} - normal_quantile(0.533700) == Approx(0.08457408802851875) for: 0.084574088 == Approx( 0.084574088 )
|
4053
|
+
# normal_quantile
|
4054
|
+
ok {test-number} - normal_quantile(0.025000) == Approx(-1.95996398454005449) for: -1.9599639845 == Approx( -1.9599639845 )
|
4055
|
+
# not allowed
|
4056
|
+
ok {test-number} -
|
4057
|
+
# not prints unscoped info from previous failures
|
4058
|
+
ok {test-number} - true with 1 message: 'this MAY be seen only for the FIRST assertion IF info is printed for passing assertions'
|
4059
|
+
# not prints unscoped info from previous failures
|
4060
|
+
ok {test-number} - true with 1 message: 'this MAY be seen only for the SECOND assertion IF info is printed for passing assertions'
|
4061
|
+
# not prints unscoped info from previous failures
|
4062
|
+
not ok {test-number} - false with 1 message: 'this SHOULD be seen'
|
4063
|
+
# null strings
|
4064
|
+
ok {test-number} - makeString( false ) != static_cast<char*>(0) for: "valid string" != {null string}
|
4065
|
+
# null strings
|
4066
|
+
ok {test-number} - makeString( true ) == static_cast<char*>(0) for: {null string} == {null string}
|
4067
|
+
# null_ptr
|
4068
|
+
ok {test-number} - ptr.get() == 0 for: 0 == 0
|
4069
|
+
# pair<pair<int,const char *,pair<std::string,int> > -> toString
|
4070
|
+
ok {test-number} - ::Catch::Detail::stringify( pair ) == "{ { 42, \"Arthur\" }, { \"Ford\", 24 } }" for: "{ { 42, "Arthur" }, { "Ford", 24 } }" == "{ { 42, "Arthur" }, { "Ford", 24 } }"
|
4071
|
+
# parseEnums
|
4072
|
+
ok {test-number} - parseEnums( "" ), Equals( std::vector<Catch::StringRef>{} ) for: { } Equals: { }
|
4073
|
+
# parseEnums
|
4074
|
+
ok {test-number} - parseEnums( "ClassName::EnumName::Value1" ), Equals(std::vector<Catch::StringRef>{"Value1"} ) for: { Value1 } Equals: { Value1 }
|
4075
|
+
# parseEnums
|
4076
|
+
ok {test-number} - parseEnums( "Value1" ), Equals( std::vector<Catch::StringRef>{"Value1"} ) for: { Value1 } Equals: { Value1 }
|
4077
|
+
# parseEnums
|
4078
|
+
ok {test-number} - parseEnums( "EnumName::Value1" ), Equals(std::vector<Catch::StringRef>{"Value1"} ) for: { Value1 } Equals: { Value1 }
|
4079
|
+
# parseEnums
|
4080
|
+
ok {test-number} - parseEnums( "ClassName::EnumName::Value1, ClassName::EnumName::Value2" ), Equals( std::vector<Catch::StringRef>{"Value1", "Value2"} ) for: { Value1, Value2 } Equals: { Value1, Value2 }
|
4081
|
+
# parseEnums
|
4082
|
+
ok {test-number} - parseEnums( "ClassName::EnumName::Value1, ClassName::EnumName::Value2, ClassName::EnumName::Value3" ), Equals( std::vector<Catch::StringRef>{"Value1", "Value2", "Value3"} ) for: { Value1, Value2, Value3 } Equals: { Value1, Value2, Value3 }
|
4083
|
+
# parseEnums
|
4084
|
+
ok {test-number} - parseEnums( "ClassName::EnumName::Value1,ClassName::EnumName::Value2 , ClassName::EnumName::Value3" ), Equals( std::vector<Catch::StringRef>{"Value1", "Value2", "Value3"} ) for: { Value1, Value2, Value3 } Equals: { Value1, Value2, Value3 }
|
4085
|
+
# pointer to class
|
4086
|
+
ok {test-number} - p == 0 for: 0 == 0
|
4087
|
+
# print unscoped info if passing unscoped info is printed
|
4088
|
+
ok {test-number} - true with 1 message: 'this MAY be seen IF info is printed for passing assertions'
|
4089
|
+
# prints unscoped info on failure
|
4090
|
+
not ok {test-number} - false with 2 messages: 'this SHOULD be seen' and 'this SHOULD also be seen'
|
4091
|
+
# prints unscoped info only for the first assertion
|
4092
|
+
not ok {test-number} - false with 1 message: 'this SHOULD be seen only ONCE'
|
4093
|
+
# prints unscoped info only for the first assertion
|
4094
|
+
ok {test-number} - true
|
4095
|
+
# prints unscoped info only for the first assertion
|
4096
|
+
ok {test-number} - true with 1 message: 'this MAY also be seen only ONCE IF info is printed for passing assertions'
|
4097
|
+
# prints unscoped info only for the first assertion
|
4098
|
+
ok {test-number} - true
|
4099
|
+
# random SECTION tests
|
4100
|
+
ok {test-number} - a != b for: 1 != 2
|
4101
|
+
# random SECTION tests
|
4102
|
+
ok {test-number} - b != a for: 2 != 1
|
4103
|
+
# random SECTION tests
|
4104
|
+
ok {test-number} - a != b for: 1 != 2
|
4105
|
+
# replaceInPlace
|
4106
|
+
ok {test-number} - Catch::replaceInPlace(letters, "b", "z") for: true
|
4107
|
+
# replaceInPlace
|
4108
|
+
ok {test-number} - letters == "azcdefcg" for: "azcdefcg" == "azcdefcg"
|
4109
|
+
# replaceInPlace
|
4110
|
+
ok {test-number} - Catch::replaceInPlace(letters, "c", "z") for: true
|
4111
|
+
# replaceInPlace
|
4112
|
+
ok {test-number} - letters == "abzdefzg" for: "abzdefzg" == "abzdefzg"
|
4113
|
+
# replaceInPlace
|
4114
|
+
ok {test-number} - Catch::replaceInPlace(letters, "a", "z") for: true
|
4115
|
+
# replaceInPlace
|
4116
|
+
ok {test-number} - letters == "zbcdefcg" for: "zbcdefcg" == "zbcdefcg"
|
4117
|
+
# replaceInPlace
|
4118
|
+
ok {test-number} - Catch::replaceInPlace(letters, "g", "z") for: true
|
4119
|
+
# replaceInPlace
|
4120
|
+
ok {test-number} - letters == "abcdefcz" for: "abcdefcz" == "abcdefcz"
|
4121
|
+
# replaceInPlace
|
4122
|
+
ok {test-number} - Catch::replaceInPlace(letters, letters, "replaced") for: true
|
4123
|
+
# replaceInPlace
|
4124
|
+
ok {test-number} - letters == "replaced" for: "replaced" == "replaced"
|
4125
|
+
# replaceInPlace
|
4126
|
+
ok {test-number} - !(Catch::replaceInPlace(letters, "x", "z")) for: !false
|
4127
|
+
# replaceInPlace
|
4128
|
+
ok {test-number} - letters == letters for: "abcdefcg" == "abcdefcg"
|
4129
|
+
# replaceInPlace
|
4130
|
+
ok {test-number} - Catch::replaceInPlace(s, "'", "|'") for: true
|
4131
|
+
# replaceInPlace
|
4132
|
+
ok {test-number} - s == "didn|'t" for: "didn|'t" == "didn|'t"
|
4133
|
+
# request an unknown %-starting stream fails
|
4134
|
+
ok {test-number} - Catch::makeStream( "%somestream" )
|
4135
|
+
# resolution
|
4136
|
+
ok {test-number} - res.size() == count for: 10 == 10
|
4137
|
+
# resolution
|
4138
|
+
ok {test-number} - res[i] == rate for: 1000.0 == 1000 (0x<hex digits>)
|
4139
|
+
# resolution
|
4140
|
+
ok {test-number} - res[i] == rate for: 1000.0 == 1000 (0x<hex digits>)
|
4141
|
+
# resolution
|
4142
|
+
ok {test-number} - res[i] == rate for: 1000.0 == 1000 (0x<hex digits>)
|
4143
|
+
# resolution
|
4144
|
+
ok {test-number} - res[i] == rate for: 1000.0 == 1000 (0x<hex digits>)
|
4145
|
+
# resolution
|
4146
|
+
ok {test-number} - res[i] == rate for: 1000.0 == 1000 (0x<hex digits>)
|
4147
|
+
# resolution
|
4148
|
+
ok {test-number} - res[i] == rate for: 1000.0 == 1000 (0x<hex digits>)
|
4149
|
+
# resolution
|
4150
|
+
ok {test-number} - res[i] == rate for: 1000.0 == 1000 (0x<hex digits>)
|
4151
|
+
# resolution
|
4152
|
+
ok {test-number} - res[i] == rate for: 1000.0 == 1000 (0x<hex digits>)
|
4153
|
+
# resolution
|
4154
|
+
ok {test-number} - res[i] == rate for: 1000.0 == 1000 (0x<hex digits>)
|
4155
|
+
# run_for_at_least, chronometer
|
4156
|
+
ok {test-number} - meter.runs() >= old_runs for: 1 >= 1
|
4157
|
+
# run_for_at_least, chronometer
|
4158
|
+
ok {test-number} - meter.runs() >= old_runs for: 2 >= 1
|
4159
|
+
# run_for_at_least, chronometer
|
4160
|
+
ok {test-number} - meter.runs() >= old_runs for: 4 >= 2
|
4161
|
+
# run_for_at_least, chronometer
|
4162
|
+
ok {test-number} - meter.runs() >= old_runs for: 8 >= 4
|
4163
|
+
# run_for_at_least, chronometer
|
4164
|
+
ok {test-number} - meter.runs() >= old_runs for: 16 >= 8
|
4165
|
+
# run_for_at_least, chronometer
|
4166
|
+
ok {test-number} - meter.runs() >= old_runs for: 32 >= 16
|
4167
|
+
# run_for_at_least, chronometer
|
4168
|
+
ok {test-number} - meter.runs() >= old_runs for: 64 >= 32
|
4169
|
+
# run_for_at_least, chronometer
|
4170
|
+
ok {test-number} - meter.runs() >= old_runs for: 128 >= 64
|
4171
|
+
# run_for_at_least, chronometer
|
4172
|
+
ok {test-number} - Timing.elapsed >= time for: 128 ns >= 100 ns
|
4173
|
+
# run_for_at_least, chronometer
|
4174
|
+
ok {test-number} - Timing.result == Timing.iterations + 17 for: 145 == 145
|
4175
|
+
# run_for_at_least, chronometer
|
4176
|
+
ok {test-number} - Timing.iterations >= time.count() for: 128 >= 100
|
4177
|
+
# run_for_at_least, int
|
4178
|
+
ok {test-number} - x >= old_x for: 1 >= 1
|
4179
|
+
# run_for_at_least, int
|
4180
|
+
ok {test-number} - x >= old_x for: 2 >= 1
|
4181
|
+
# run_for_at_least, int
|
4182
|
+
ok {test-number} - x >= old_x for: 4 >= 2
|
4183
|
+
# run_for_at_least, int
|
4184
|
+
ok {test-number} - x >= old_x for: 8 >= 4
|
4185
|
+
# run_for_at_least, int
|
4186
|
+
ok {test-number} - x >= old_x for: 16 >= 8
|
4187
|
+
# run_for_at_least, int
|
4188
|
+
ok {test-number} - x >= old_x for: 32 >= 16
|
4189
|
+
# run_for_at_least, int
|
4190
|
+
ok {test-number} - x >= old_x for: 64 >= 32
|
4191
|
+
# run_for_at_least, int
|
4192
|
+
ok {test-number} - x >= old_x for: 128 >= 64
|
4193
|
+
# run_for_at_least, int
|
4194
|
+
ok {test-number} - Timing.elapsed >= time for: 128 ns >= 100 ns
|
4195
|
+
# run_for_at_least, int
|
4196
|
+
ok {test-number} - Timing.result == Timing.iterations + 17 for: 145 == 145
|
4197
|
+
# run_for_at_least, int
|
4198
|
+
ok {test-number} - Timing.iterations >= time.count() for: 128 >= 100
|
4199
|
+
# sections can be skipped dynamically at runtime
|
4200
|
+
ok {test-number} -
|
4201
|
+
# sections can be skipped dynamically at runtime
|
4202
|
+
ok {test-number} - # SKIP
|
4203
|
+
# sections can be skipped dynamically at runtime
|
4204
|
+
ok {test-number} -
|
4205
|
+
# send a single char to INFO
|
4206
|
+
not ok {test-number} - false with 1 message: '3'
|
4207
|
+
# sends information to INFO
|
4208
|
+
not ok {test-number} - false with 2 messages: 'hi' and 'i := 7'
|
4209
|
+
# shortened hide tags are split apart
|
4210
|
+
ok {test-number} - testcase.tags, VectorContains( Tag( "magic-tag" ) ) && VectorContains( Tag( "."_catch_sr ) ) for: { {?}, {?} } ( Contains: {?} and Contains: {?} )
|
4211
|
+
# skipped tests can optionally provide a reason
|
4212
|
+
ok {test-number} - # SKIP 'skipping because answer = 43'
|
4213
|
+
# splitString
|
4214
|
+
ok {test-number} - splitStringRef("", ','), Equals(std::vector<StringRef>()) for: { } Equals: { }
|
4215
|
+
# splitString
|
4216
|
+
ok {test-number} - splitStringRef("abc", ','), Equals(std::vector<StringRef>{"abc"}) for: { abc } Equals: { abc }
|
4217
|
+
# splitString
|
4218
|
+
ok {test-number} - splitStringRef("abc,def", ','), Equals(std::vector<StringRef>{"abc", "def"}) for: { abc, def } Equals: { abc, def }
|
4219
|
+
# stacks unscoped info in loops
|
4220
|
+
not ok {test-number} - false with 4 messages: 'Count 1 to 3...' and '1' and '2' and '3'
|
4221
|
+
# stacks unscoped info in loops
|
4222
|
+
not ok {test-number} - false with 4 messages: 'Count 4 to 6...' and '4' and '5' and '6'
|
4223
|
+
# startsWith
|
4224
|
+
ok {test-number} - !(startsWith("", 'c')) for: !false
|
4225
|
+
# startsWith
|
4226
|
+
ok {test-number} - startsWith(std::string("abc"), 'a') for: true
|
4227
|
+
# startsWith
|
4228
|
+
ok {test-number} - startsWith("def"_catch_sr, 'd') for: true
|
4229
|
+
# std::map is convertible string
|
4230
|
+
ok {test-number} - Catch::Detail::stringify( emptyMap ) == "{ }" for: "{ }" == "{ }"
|
4231
|
+
# std::map is convertible string
|
4232
|
+
ok {test-number} - Catch::Detail::stringify( map ) == "{ { \"one\", 1 } }" for: "{ { "one", 1 } }" == "{ { "one", 1 } }"
|
4233
|
+
# std::map is convertible string
|
4234
|
+
ok {test-number} - Catch::Detail::stringify( map ) == "{ { \"abc\", 1 }, { \"def\", 2 }, { \"ghi\", 3 } }" for: "{ { "abc", 1 }, { "def", 2 }, { "ghi", 3 } }" == "{ { "abc", 1 }, { "def", 2 }, { "ghi", 3 } }"
|
4235
|
+
# std::pair<int,const std::string> -> toString
|
4236
|
+
ok {test-number} - ::Catch::Detail::stringify(value) == "{ 34, \"xyzzy\" }" for: "{ 34, "xyzzy" }" == "{ 34, "xyzzy" }"
|
4237
|
+
# std::pair<int,std::string> -> toString
|
4238
|
+
ok {test-number} - ::Catch::Detail::stringify( value ) == "{ 34, \"xyzzy\" }" for: "{ 34, "xyzzy" }" == "{ 34, "xyzzy" }"
|
4239
|
+
# std::set is convertible string
|
4240
|
+
ok {test-number} - Catch::Detail::stringify( emptySet ) == "{ }" for: "{ }" == "{ }"
|
4241
|
+
# std::set is convertible string
|
4242
|
+
ok {test-number} - Catch::Detail::stringify( set ) == "{ \"one\" }" for: "{ "one" }" == "{ "one" }"
|
4243
|
+
# std::set is convertible string
|
4244
|
+
ok {test-number} - Catch::Detail::stringify( set ) == "{ \"abc\", \"def\", \"ghi\" }" for: "{ "abc", "def", "ghi" }" == "{ "abc", "def", "ghi" }"
|
4245
|
+
# std::vector<std::pair<std::string,int> > -> toString
|
4246
|
+
ok {test-number} - ::Catch::Detail::stringify( pr ) == "{ { \"green\", 55 } }" for: "{ { "green", 55 } }" == "{ { "green", 55 } }"
|
4247
|
+
# stdout and stderr streams have %-starting name
|
4248
|
+
ok {test-number} - Catch::makeStream( "%stderr" )->isConsole() for: true
|
4249
|
+
# stdout and stderr streams have %-starting name
|
4250
|
+
ok {test-number} - Catch::makeStream( "%stdout" )->isConsole() for: true
|
4251
|
+
# stringify ranges
|
4252
|
+
ok {test-number} - ::Catch::Detail::stringify(streamable_range{}) == "op<<(streamable_range)" for: "op<<(streamable_range)" == "op<<(streamable_range)"
|
4253
|
+
# stringify ranges
|
4254
|
+
ok {test-number} - ::Catch::Detail::stringify(stringmaker_range{}) == "stringmaker(streamable_range)" for: "stringmaker(streamable_range)" == "stringmaker(streamable_range)"
|
4255
|
+
# stringify ranges
|
4256
|
+
ok {test-number} - ::Catch::Detail::stringify(just_range{}) == "{ 1, 2, 3, 4 }" for: "{ 1, 2, 3, 4 }" == "{ 1, 2, 3, 4 }"
|
4257
|
+
# stringify ranges
|
4258
|
+
ok {test-number} - ::Catch::Detail::stringify(disabled_range{}) == "{?}" for: "{?}" == "{?}"
|
4259
|
+
# stringify( has_maker )
|
4260
|
+
ok {test-number} - ::Catch::Detail::stringify( item ) == "StringMaker<has_maker>" for: "StringMaker<has_maker>" == "StringMaker<has_maker>"
|
4261
|
+
# stringify( has_maker_and_operator )
|
4262
|
+
ok {test-number} - ::Catch::Detail::stringify( item ) == "StringMaker<has_maker_and_operator>" for: "StringMaker<has_maker_and_operator>" == "StringMaker<has_maker_and_operator>"
|
4263
|
+
# stringify( has_neither )
|
4264
|
+
ok {test-number} - ::Catch::Detail::stringify(item) == "{?}" for: "{?}" == "{?}"
|
4265
|
+
# stringify( has_operator )
|
4266
|
+
ok {test-number} - ::Catch::Detail::stringify( item ) == "operator<<( has_operator )" for: "operator<<( has_operator )" == "operator<<( has_operator )"
|
4267
|
+
# stringify( has_template_operator )
|
4268
|
+
ok {test-number} - ::Catch::Detail::stringify( item ) == "operator<<( has_template_operator )" for: "operator<<( has_template_operator )" == "operator<<( has_template_operator )"
|
4269
|
+
# stringify( vectors<has_maker> )
|
4270
|
+
ok {test-number} - ::Catch::Detail::stringify( v ) == "{ StringMaker<has_maker> }" for: "{ StringMaker<has_maker> }" == "{ StringMaker<has_maker> }"
|
4271
|
+
# stringify( vectors<has_maker_and_operator> )
|
4272
|
+
ok {test-number} - ::Catch::Detail::stringify( v ) == "{ StringMaker<has_maker_and_operator> }" for: "{ StringMaker<has_maker_and_operator> }" == "{ StringMaker<has_maker_and_operator> }"
|
4273
|
+
# stringify( vectors<has_operator> )
|
4274
|
+
ok {test-number} - ::Catch::Detail::stringify( v ) == "{ operator<<( has_operator ) }" for: "{ operator<<( has_operator ) }" == "{ operator<<( has_operator ) }"
|
4275
|
+
# strlen3
|
4276
|
+
ok {test-number} - data.str.size() == data.len for: 3 == 3
|
4277
|
+
# strlen3
|
4278
|
+
ok {test-number} - data.str.size() == data.len for: 3 == 3
|
4279
|
+
# strlen3
|
4280
|
+
ok {test-number} - data.str.size() == data.len for: 5 == 5
|
4281
|
+
# strlen3
|
4282
|
+
ok {test-number} - data.str.size() == data.len for: 4 == 4
|
4283
|
+
# tables
|
4284
|
+
ok {test-number} - strlen(std::get<0>(data)) == static_cast<size_t>(std::get<1>(data)) for: 5 == 5
|
4285
|
+
# tables
|
4286
|
+
ok {test-number} - strlen(std::get<0>(data)) == static_cast<size_t>(std::get<1>(data)) for: 6 == 6
|
4287
|
+
# tables
|
4288
|
+
ok {test-number} - strlen(std::get<0>(data)) == static_cast<size_t>(std::get<1>(data)) for: 5 == 5
|
4289
|
+
# tables
|
4290
|
+
ok {test-number} - strlen(std::get<0>(data)) == static_cast<size_t>(std::get<1>(data)) for: 6 == 6
|
4291
|
+
# tags with dots in later positions are not parsed as hidden
|
4292
|
+
ok {test-number} - testcase.tags.size() == 1 for: 1 == 1
|
4293
|
+
# tags with dots in later positions are not parsed as hidden
|
4294
|
+
ok {test-number} - testcase.tags[0].original == "magic.tag"_catch_sr for: magic.tag == magic.tag
|
4295
|
+
# tests can be skipped dynamically at runtime
|
4296
|
+
ok {test-number} - # SKIP
|
4297
|
+
# thrown std::strings are translated
|
4298
|
+
not ok {test-number} - unexpected exception with message: 'Why would you throw a std::string?'
|
4299
|
+
# toString on const wchar_t const pointer returns the string contents
|
4300
|
+
ok {test-number} - result == "\"wide load\"" for: ""wide load"" == ""wide load""
|
4301
|
+
# toString on const wchar_t pointer returns the string contents
|
4302
|
+
ok {test-number} - result == "\"wide load\"" for: ""wide load"" == ""wide load""
|
4303
|
+
# toString on wchar_t const pointer returns the string contents
|
4304
|
+
ok {test-number} - result == "\"wide load\"" for: ""wide load"" == ""wide load""
|
4305
|
+
# toString on wchar_t returns the string contents
|
4306
|
+
ok {test-number} - result == "\"wide load\"" for: ""wide load"" == ""wide load""
|
4307
|
+
# toString(enum class w/operator<<)
|
4308
|
+
ok {test-number} - ::Catch::Detail::stringify(e0) == "E2/V0" for: "E2/V0" == "E2/V0"
|
4309
|
+
# toString(enum class w/operator<<)
|
4310
|
+
ok {test-number} - ::Catch::Detail::stringify(e1) == "E2/V1" for: "E2/V1" == "E2/V1"
|
4311
|
+
# toString(enum class w/operator<<)
|
4312
|
+
ok {test-number} - ::Catch::Detail::stringify(e3) == "Unknown enum value 10" for: "Unknown enum value 10" == "Unknown enum value 10"
|
4313
|
+
# toString(enum class)
|
4314
|
+
ok {test-number} - ::Catch::Detail::stringify(e0) == "0" for: "0" == "0"
|
4315
|
+
# toString(enum class)
|
4316
|
+
ok {test-number} - ::Catch::Detail::stringify(e1) == "1" for: "1" == "1"
|
4317
|
+
# toString(enum w/operator<<)
|
4318
|
+
ok {test-number} - ::Catch::Detail::stringify(e0) == "E2{0}" for: "E2{0}" == "E2{0}"
|
4319
|
+
# toString(enum w/operator<<)
|
4320
|
+
ok {test-number} - ::Catch::Detail::stringify(e1) == "E2{1}" for: "E2{1}" == "E2{1}"
|
4321
|
+
# toString(enum)
|
4322
|
+
ok {test-number} - ::Catch::Detail::stringify(e0) == "0" for: "0" == "0"
|
4323
|
+
# toString(enum)
|
4324
|
+
ok {test-number} - ::Catch::Detail::stringify(e1) == "1" for: "1" == "1"
|
4325
|
+
# tuple<>
|
4326
|
+
ok {test-number} - "{ }" == ::Catch::Detail::stringify(type{}) for: "{ }" == "{ }"
|
4327
|
+
# tuple<>
|
4328
|
+
ok {test-number} - "{ }" == ::Catch::Detail::stringify(value) for: "{ }" == "{ }"
|
4329
|
+
# tuple<float,int>
|
4330
|
+
ok {test-number} - "1.2f" == ::Catch::Detail::stringify(float(1.2)) for: "1.2f" == "1.2f"
|
4331
|
+
# tuple<float,int>
|
4332
|
+
ok {test-number} - "{ 1.2f, 0 }" == ::Catch::Detail::stringify(type{1.2f,0}) for: "{ 1.2f, 0 }" == "{ 1.2f, 0 }"
|
4333
|
+
# tuple<int>
|
4334
|
+
ok {test-number} - "{ 0 }" == ::Catch::Detail::stringify(type{0}) for: "{ 0 }" == "{ 0 }"
|
4335
|
+
# tuple<string,string>
|
4336
|
+
ok {test-number} - "{ \"hello\", \"world\" }" == ::Catch::Detail::stringify(type{"hello","world"}) for: "{ "hello", "world" }" == "{ "hello", "world" }"
|
4337
|
+
# tuple<tuple<int>,tuple<>,float>
|
4338
|
+
ok {test-number} - "{ { 42 }, { }, 1.2f }" == ::Catch::Detail::stringify(value) for: "{ { 42 }, { }, 1.2f }" == "{ { 42 }, { }, 1.2f }"
|
4339
|
+
# uniform samples
|
4340
|
+
ok {test-number} - e.point == 23 for: 23.0 == 23
|
4341
|
+
# uniform samples
|
4342
|
+
ok {test-number} - e.upper_bound == 23 for: 23.0 == 23
|
4343
|
+
# uniform samples
|
4344
|
+
ok {test-number} - e.lower_bound == 23 for: 23.0 == 23
|
4345
|
+
# uniform samples
|
4346
|
+
ok {test-number} - e.confidence_interval == 0.95 for: 0.95 == 0.95
|
4347
|
+
# unique_ptr reimplementation: basic functionality
|
4348
|
+
ok {test-number} - !(ptr) for: !{?}
|
4349
|
+
# unique_ptr reimplementation: basic functionality
|
4350
|
+
ok {test-number} - ptr.get() == 0 for: 0 == 0
|
4351
|
+
# unique_ptr reimplementation: basic functionality
|
4352
|
+
ok {test-number} - ptr for: {?}
|
4353
|
+
# unique_ptr reimplementation: basic functionality
|
4354
|
+
ok {test-number} - *ptr == 0 for: 0 == 0
|
4355
|
+
# unique_ptr reimplementation: basic functionality
|
4356
|
+
ok {test-number} - ptr.get() == naked_ptr for: 0x<hex digits> == 0x<hex digits>
|
4357
|
+
# unique_ptr reimplementation: basic functionality
|
4358
|
+
ok {test-number} - !(ptr) for: !{?}
|
4359
|
+
# unique_ptr reimplementation: basic functionality
|
4360
|
+
ok {test-number} - ptr.get() == 0 for: 0 == 0
|
4361
|
+
# unique_ptr reimplementation: basic functionality
|
4362
|
+
ok {test-number} - ptr for: {?}
|
4363
|
+
# unique_ptr reimplementation: basic functionality
|
4364
|
+
ok {test-number} - *ptr == 0 for: 0 == 0
|
4365
|
+
# unique_ptr reimplementation: basic functionality
|
4366
|
+
ok {test-number} - ptr.get() == naked_ptr for: 0x<hex digits> == 0x<hex digits>
|
4367
|
+
# unique_ptr reimplementation: basic functionality
|
4368
|
+
ok {test-number} - ptr for: {?}
|
4369
|
+
# unique_ptr reimplementation: basic functionality
|
4370
|
+
ok {test-number} - ptr.get() != 0 for: 0x<hex digits> != 0
|
4371
|
+
# unique_ptr reimplementation: basic functionality
|
4372
|
+
ok {test-number} - *ptr == 2 for: 2 == 2
|
4373
|
+
# unique_ptr reimplementation: basic functionality
|
4374
|
+
ok {test-number} - !(ptr) for: !{?}
|
4375
|
+
# unique_ptr reimplementation: basic functionality
|
4376
|
+
ok {test-number} - ptr.get() == 0 for: 0 == 0
|
4377
|
+
# unique_ptr reimplementation: basic functionality
|
4378
|
+
ok {test-number} - !(ptr1) for: !{?}
|
4379
|
+
# unique_ptr reimplementation: basic functionality
|
4380
|
+
ok {test-number} - ptr2 for: {?}
|
4381
|
+
# unique_ptr reimplementation: basic functionality
|
4382
|
+
ok {test-number} - *ptr2 == 1 for: 1 == 1
|
4383
|
+
# unique_ptr reimplementation: basic functionality
|
4384
|
+
ok {test-number} - !(ptr2) for: !{?}
|
4385
|
+
# unique_ptr reimplementation: basic functionality
|
4386
|
+
ok {test-number} - ptr1 for: {?}
|
4387
|
+
# unique_ptr reimplementation: basic functionality
|
4388
|
+
ok {test-number} - *ptr1 == 2 for: 2 == 2
|
4389
|
+
# unique_ptr reimplementation: basic functionality
|
4390
|
+
ok {test-number} - *ptr1 == 2 for: 2 == 2
|
4391
|
+
# unique_ptr reimplementation: basic functionality
|
4392
|
+
ok {test-number} - *ptr2 == 1 for: 1 == 1
|
4393
|
+
# vec<vec<string,alloc>> -> toString
|
4394
|
+
ok {test-number} - ::Catch::Detail::stringify(v) == "{ }" for: "{ }" == "{ }"
|
4395
|
+
# vec<vec<string,alloc>> -> toString
|
4396
|
+
ok {test-number} - ::Catch::Detail::stringify(v) == "{ { \"hello\" }, { \"world\" } }" for: "{ { "hello" }, { "world" } }" == "{ { "hello" }, { "world" } }"
|
4397
|
+
# vector<bool> -> toString
|
4398
|
+
ok {test-number} - ::Catch::Detail::stringify(bools) == "{ }" for: "{ }" == "{ }"
|
4399
|
+
# vector<bool> -> toString
|
4400
|
+
ok {test-number} - ::Catch::Detail::stringify(bools) == "{ true }" for: "{ true }" == "{ true }"
|
4401
|
+
# vector<bool> -> toString
|
4402
|
+
ok {test-number} - ::Catch::Detail::stringify(bools) == "{ true, false }" for: "{ true, false }" == "{ true, false }"
|
4403
|
+
# vector<int,allocator> -> toString
|
4404
|
+
ok {test-number} - ::Catch::Detail::stringify(vv) == "{ }" for: "{ }" == "{ }"
|
4405
|
+
# vector<int,allocator> -> toString
|
4406
|
+
ok {test-number} - ::Catch::Detail::stringify(vv) == "{ 42 }" for: "{ 42 }" == "{ 42 }"
|
4407
|
+
# vector<int,allocator> -> toString
|
4408
|
+
ok {test-number} - ::Catch::Detail::stringify(vv) == "{ 42, 250 }" for: "{ 42, 250 }" == "{ 42, 250 }"
|
4409
|
+
# vector<int> -> toString
|
4410
|
+
ok {test-number} - ::Catch::Detail::stringify(vv) == "{ }" for: "{ }" == "{ }"
|
4411
|
+
# vector<int> -> toString
|
4412
|
+
ok {test-number} - ::Catch::Detail::stringify(vv) == "{ 42 }" for: "{ 42 }" == "{ 42 }"
|
4413
|
+
# vector<int> -> toString
|
4414
|
+
ok {test-number} - ::Catch::Detail::stringify(vv) == "{ 42, 250 }" for: "{ 42, 250 }" == "{ 42, 250 }"
|
4415
|
+
# vector<string> -> toString
|
4416
|
+
ok {test-number} - ::Catch::Detail::stringify(vv) == "{ }" for: "{ }" == "{ }"
|
4417
|
+
# vector<string> -> toString
|
4418
|
+
ok {test-number} - ::Catch::Detail::stringify(vv) == "{ \"hello\" }" for: "{ "hello" }" == "{ "hello" }"
|
4419
|
+
# vector<string> -> toString
|
4420
|
+
ok {test-number} - ::Catch::Detail::stringify(vv) == "{ \"hello\", \"world\" }" for: "{ "hello", "world" }" == "{ "hello", "world" }"
|
4421
|
+
# vectors can be sized and resized
|
4422
|
+
ok {test-number} - v.size() == 5 for: 5 == 5
|
4423
|
+
# vectors can be sized and resized
|
4424
|
+
ok {test-number} - v.capacity() >= 5 for: 5 >= 5
|
4425
|
+
# vectors can be sized and resized
|
4426
|
+
ok {test-number} - v.size() == 10 for: 10 == 10
|
4427
|
+
# vectors can be sized and resized
|
4428
|
+
ok {test-number} - v.capacity() >= 10 for: 10 >= 10
|
4429
|
+
# vectors can be sized and resized
|
4430
|
+
ok {test-number} - v.size() == 5 for: 5 == 5
|
4431
|
+
# vectors can be sized and resized
|
4432
|
+
ok {test-number} - v.capacity() >= 5 for: 5 >= 5
|
4433
|
+
# vectors can be sized and resized
|
4434
|
+
ok {test-number} - v.size() == 0 for: 0 == 0
|
4435
|
+
# vectors can be sized and resized
|
4436
|
+
ok {test-number} - v.capacity() >= 5 for: 5 >= 5
|
4437
|
+
# vectors can be sized and resized
|
4438
|
+
ok {test-number} - v.capacity() == 0 for: 0 == 0
|
4439
|
+
# vectors can be sized and resized
|
4440
|
+
ok {test-number} - v.size() == 5 for: 5 == 5
|
4441
|
+
# vectors can be sized and resized
|
4442
|
+
ok {test-number} - v.capacity() >= 5 for: 5 >= 5
|
4443
|
+
# vectors can be sized and resized
|
4444
|
+
ok {test-number} - v.size() == 5 for: 5 == 5
|
4445
|
+
# vectors can be sized and resized
|
4446
|
+
ok {test-number} - v.capacity() >= 10 for: 10 >= 10
|
4447
|
+
# vectors can be sized and resized
|
4448
|
+
ok {test-number} - v.size() == 5 for: 5 == 5
|
4449
|
+
# vectors can be sized and resized
|
4450
|
+
ok {test-number} - v.capacity() >= 5 for: 5 >= 5
|
4451
|
+
# vectors can be sized and resized
|
4452
|
+
ok {test-number} - v.size() == 5 for: 5 == 5
|
4453
|
+
# vectors can be sized and resized
|
4454
|
+
ok {test-number} - v.capacity() >= 5 for: 5 >= 5
|
4455
|
+
# warmup
|
4456
|
+
ok {test-number} - (iterations * rate) > Catch::Benchmark::Detail::warmup_time.count() for: 160000000 (0x<hex digits>) > 100
|
4457
|
+
# warmup
|
4458
|
+
ok {test-number} - (end - start) > Catch::Benchmark::Detail::warmup_time for: 310016000 ns > 100 ms
|
4459
|
+
# weighted_average_quantile
|
4460
|
+
ok {test-number} - q1 == 14.5 for: 14.5 == 14.5
|
4461
|
+
# weighted_average_quantile
|
4462
|
+
ok {test-number} - med == 18. for: 18.0 == 18.0
|
4463
|
+
# weighted_average_quantile
|
4464
|
+
ok {test-number} - q3 == 23. for: 23.0 == 23.0
|
4465
|
+
# xmlentitycheck
|
4466
|
+
ok {test-number} -
|
4467
|
+
# xmlentitycheck
|
4468
|
+
ok {test-number} -
|
4469
|
+
1..2237
|
4470
|
+
|