-
Notifications
You must be signed in to change notification settings - Fork 4
/
run_if.cc
65 lines (58 loc) · 1.65 KB
/
run_if.cc
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#include <gtest/gtest.h>
#include "scientist.hh"
TEST(RunIf, DoesNotRunCandidate)
{
bool candidateRun = false;
bool published = false;
int res = Scientist<int>::Science("test", [&](ExperimentInterface<int>& e)
{
e.Use([]() { return 42;});
e.Try([&]() { candidateRun = true; return 1;});
e.RunIf([]() { return false; });
e.Publish([&](const Observation<int>& o)
{
published = true;
});
});
ASSERT_FALSE(published);
ASSERT_FALSE(candidateRun);
ASSERT_EQ(42, res);
}
TEST(RunIf, DoesNotRunCandidateIfAnyFalse)
{
bool candidateRun = false;
bool published = false;
int res = Scientist<int>::Science("test", [&](ExperimentInterface<int>& e)
{
e.Use([]() { return 42;});
e.Try([&]() { candidateRun = true; return 1;});
e.RunIf([]() { return true; });
e.RunIf([]() { return false; });
e.Publish([&](const Observation<int>& o)
{
published = true;
});
});
ASSERT_FALSE(published);
ASSERT_FALSE(candidateRun);
ASSERT_EQ(42, res);
}
TEST(RunIf, DoesNotRunCandidateIfPredicateThrows)
{
bool candidateRun = false;
bool published = false;
int res = Scientist<int>::Science("test", [&](ExperimentInterface<int>& e)
{
e.Use([]() { return 42;});
e.Try([&]() { candidateRun = true; return 1;});
e.RunIf([]() { return true; });
e.RunIf([]() { throw ""; return true; });
e.Publish([&](const Observation<int>& o)
{
published = true;
});
});
ASSERT_FALSE(published);
ASSERT_FALSE(candidateRun);
ASSERT_EQ(42, res);
}