summaryrefslogtreecommitdiff
path: root/vendor/bandit/bandit/run_policies/never_run_policy.h
blob: 003fd889de371cf1db81f665048bd655bc463749 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef BANDIT_NEVER_RUN_POLICY_H
#define BANDIT_NEVER_RUN_POLICY_H

namespace bandit { namespace detail {

  struct never_run_policy : public run_policy
  {
    bool should_run(const char* /* it_name */, const contextstack_t& /* contexts */) const
    {
      return false;
    }
  };
}}
#endif