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