summaryrefslogtreecommitdiff
path: root/vendor/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/constraints/fulfillsconstraint.h
blob: 577056c1d49b4f50d81cb16cd7fabee39ebfbb8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
//          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 FULFILLSCONSTRAINT_H
#define FULFILLSCONSTRAINT_H

#include "./expressions/expression.h"

namespace snowhouse {

  template< typename MatcherType >
  struct FulfillsConstraint : Expression< FulfillsConstraint<MatcherType> >
  {
    FulfillsConstraint(const MatcherType& matcher)
      : m_matcher(matcher)
    {
    }

    template<typename ActualType>
    bool operator()(const ActualType& actual) const
    {
      return m_matcher.Matches(actual);
    }

    MatcherType m_matcher;
  };

  template< typename MatcherType >
  inline FulfillsConstraint<MatcherType> Fulfills(const MatcherType& matcher)
  {
    return FulfillsConstraint<MatcherType>(matcher);
  }

  template< typename MatcherType >
  struct Stringizer< FulfillsConstraint< MatcherType > >
  {
    static std::string ToString(const FulfillsConstraint<MatcherType>& constraint)
    {
      std::ostringstream builder;
      builder << snowhouse::Stringize(constraint.m_matcher);

      return builder.str();
    }
  };

}

#endif