Sha256: f97b4ccac5fbd94b0b40178ff89cfa511c9ac735c7bb97bae3d9cf8a2bcd01cd
Contents?: true
Size: 1.11 KB
Versions: 2
Compression:
Stored size: 1.11 KB
Contents
// Copyright Joakim Karlsson & Kim Gräsman 2010-2012. // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #ifndef IGLOO_EXACTLYOPERATOR_H #define IGLOO_EXACTLYOPERATOR_H namespace snowhouse { struct ExactlyOperator : public CollectionOperator { ExactlyOperator(unsigned int expected) : m_expected(expected) {} template <typename ConstraintListType, typename ActualType> void Evaluate(ConstraintListType& list, ResultStack& result, OperatorStack& operators, const ActualType& actual) { unsigned int passed_elements = CollectionConstraintEvaluator<ConstraintListType, ActualType>::Evaluate(*this, list, result, operators, actual); result.push(passed_elements == m_expected); } unsigned int m_expected; }; template<> struct Stringizer< ExactlyOperator > { static std::string ToString(const ExactlyOperator& op) { std::ostringstream stm; stm << "exactly " << op.m_expected; return stm.str(); } }; } #endif
Version data entries
2 entries across 2 versions & 1 rubygems