#include "mimic++/Fwd.hpp"
#include "mimic++/Printer.hpp"
#include "mimic++/Reporter.hpp"
#include "mimic++/Utility.hpp"
#include <algorithm>
#include <array>
#include <cassert>
#include <functional>
#include <span>
#include <tuple>
Go to the source code of this file.
|
template<typename Id , auto priorityStrategy> |
constexpr auto | mimicpp::expect::in_sequence (sequence::detail::BasicSequenceInterface< Id, priorityStrategy > &sequence) noexcept |
| Attaches the expectation onto a sequence.
|
|
template<typename FirstId , auto firstPriorityStrategy, typename SecondId , auto secondPriorityStrategy, typename... OtherIds, auto... otherPriorityStrategies> |
constexpr auto | mimicpp::expect::in_sequences (sequence::detail::BasicSequenceInterface< FirstId, firstPriorityStrategy > &firstSequence, sequence::detail::BasicSequenceInterface< SecondId, secondPriorityStrategy > &secondSequence, sequence::detail::BasicSequenceInterface< OtherIds, otherPriorityStrategies > &... otherSequences) |
| Attaches the expectation onto the listed sequences.
|
|