Sha256: 256a88d511d3610f7785b05d4ffb2e5748e05b0961215754407622133d50eb38

Contents?: true

Size: 1.16 KB

Versions: 2

Compression:

Stored size: 1.16 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_ATLEASTOPERATOR_H
#define IGLOO_ATLEASTOPERATOR_H

#include "collectionoperator.h"

namespace snowhouse {

   struct AtLeastOperator : public CollectionOperator
   {
      AtLeastOperator(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<AtLeastOperator>
   {
      static std::string ToString(const AtLeastOperator& op)
      {
         std::ostringstream stm;
         stm << "at least " << op.m_expected;
         return stm.str();
      }
   };
}

#endif

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
tree-sitter-0.1.0 ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/fluent/operators/collections/atleastoperator.h
tree-sitter-0.0.1 ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/fluent/operators/collections/atleastoperator.h