summaryrefslogtreecommitdiff
path: root/vendor/bandit/bandit/run_policies/always_run_policy.h
blob: 29bdc6273cd38969846c7194e55d04e3eafff886 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef BANDIT_ALWAYS_RUN_POLICY_H
#define BANDIT_ALWAYS_RUN_POLICY_H

namespace bandit { namespace detail {

  struct always_run_policy : public run_policy
  {
    bool should_run(const char* /* it_name */, const contextstack_t& /* contexts */) const
    {
      return true;
    }
  };

}}

#endif