|
template<typename T > |
constexpr auto | mimicpp::matches::eq (T &&value) |
| Tests, whether the target compares equal to the expected value.
|
|
template<typename T > |
constexpr auto | mimicpp::matches::ne (T &&value) |
| Tests, whether the target compares not equal to the expected value.
|
|
template<typename T > |
constexpr auto | mimicpp::matches::lt (T &&value) |
| Tests, whether the target is less than the expected value.
|
|
template<typename T > |
constexpr auto | mimicpp::matches::le (T &&value) |
| Tests, whether the target is less than or equal to the expected value.
|
|
template<typename T > |
constexpr auto | mimicpp::matches::gt (T &&value) |
| Tests, whether the target is greater than the expected value.
|
|
template<typename T > |
constexpr auto | mimicpp::matches::ge (T &&value) |
| Tests, whether the target is greater than or equal to the expected value.
|
|
template<typename UnaryPredicate > |
constexpr auto | mimicpp::matches::predicate (UnaryPredicate &&predicate, StringT description="passes predicate", StringT invertedDescription="fails predicate") |
| Tests, whether the target fulfills the given predicate.
|
|
template<satisfies< std::is_lvalue_reference > T> |
constexpr auto | mimicpp::matches::instance (T &&instance) |
| Tests, whether the target is the expected instance.
|
|
template<string Pattern> |
constexpr auto | mimicpp::matches::str::eq (Pattern &&pattern) |
| Tests, whether the target string compares equal to the expected string.
|
|
template<case_foldable_string Pattern> |
constexpr auto | mimicpp::matches::str::eq (Pattern &&pattern, const case_insensitive_t) |
| Tests, whether the target string compares case-insensitively equal to the expected string.
|
|
template<string Pattern> |
constexpr auto | mimicpp::matches::str::starts_with (Pattern &&pattern) |
| Tests, whether the target string starts with the pattern string.
|
|
template<string Pattern> |
constexpr auto | mimicpp::matches::str::starts_with (Pattern &&pattern, const case_insensitive_t) |
| Tests, whether the target string starts case-insensitively with the pattern string.
|
|
template<string Pattern> |
constexpr auto | mimicpp::matches::str::ends_with (Pattern &&pattern) |
| Tests, whether the target string ends with the pattern string.
|
|
template<string Pattern> |
constexpr auto | mimicpp::matches::str::ends_with (Pattern &&pattern, const case_insensitive_t) |
| Tests, whether the target string ends case-insensitively with the pattern string.
|
|
template<string Pattern> |
constexpr auto | mimicpp::matches::str::contains (Pattern &&pattern) |
| Tests, whether the pattern string is part of the target string.
|
|
template<string Pattern> |
constexpr auto | mimicpp::matches::str::contains (Pattern &&pattern, const case_insensitive_t) |
| Tests, whether the pattern string is case-insensitively part of the target string.
|
|
template<std::ranges::forward_range Range, typename Comparator = std::equal_to<>> |
constexpr auto | mimicpp::matches::range::eq (Range &&expected, Comparator comparator=Comparator{}) |
| Tests, whether the target range compares equal to the expected range, by comparing them element-wise.
|
|
template<std::ranges::forward_range Range, typename Comparator = std::equal_to<>> |
constexpr auto | mimicpp::matches::range::unordered_eq (Range &&expected, Comparator comparator=Comparator{}) |
| Tests, whether the target range is a permutation of the expected range, by comparing them element-wise.
|
|
template<typename Relation = std::ranges::less> |
constexpr auto | mimicpp::matches::range::is_sorted (Relation relation=Relation{}) |
| Tests, whether the target range is sorted, by applying the relation on each adjacent elements.
|
|
constexpr auto | mimicpp::matches::range::is_empty () |
| Tests, whether the target range is empty.
|
|
constexpr auto | mimicpp::matches::range::has_size (const std::integral auto expected) |
| Tests, whether the target range has the expected size.
|
|
template<typename Matcher > |
constexpr auto | mimicpp::matches::range::each_element (Matcher &&matcher) |
| Tests, whether each element of the target range matches the specified matcher.
|
|
template<typename Matcher > |
constexpr auto | mimicpp::matches::range::any_element (Matcher &&matcher) |
| Tests, whether any element of the target range matches the specified matcher.
|
|