1 | #ifndef BANDIT_NEVER_RUN_POLICY_H |
---|---|
2 | #define BANDIT_NEVER_RUN_POLICY_H |
3 | |
4 | #include <bandit/run_policies/run_policy.h> |
5 | |
6 | namespace bandit { |
7 | namespace detail { |
8 | struct never_run_policy : public run_policy { |
9 | bool should_run(const std::string&, const contextstack_t&) const override { |
10 | return false; |
11 | } |
12 | }; |
13 | } |
14 | } |
15 | #endif |
16 |