31 #include <gtest/gtest.h>
60 int test_int_smaller = 5;
61 int test_int_bigger = 15;
62 std::string test_string_smaller =
"apple";
63 std::string test_string_bigger =
"cat";
68 amo_op_int->
execute(&test_int_smaller);
69 amo_op_int->
execute(&test_int_bigger);
70 amo_op_string->
execute(&test_string_smaller);
71 amo_op_string->
execute(&test_string_bigger);
73 EXPECT_EQ(test_int_smaller, 5);
74 EXPECT_EQ(test_int_bigger, 10);
75 EXPECT_EQ(test_string_smaller,
"apple");
76 EXPECT_EQ(test_string_bigger,
"base");
81 int test_int_smaller = 5;
82 int test_int_bigger = 15;
83 std::string test_string_smaller =
"apple";
84 std::string test_string_bigger =
"cat";
89 amo_op_int->
execute(&test_int_smaller);
90 amo_op_int->
execute(&test_int_bigger);
91 amo_op_string->
execute(&test_string_smaller);
92 amo_op_string->
execute(&test_string_bigger);
94 EXPECT_EQ(test_int_smaller, 10);
95 EXPECT_EQ(test_int_bigger, 15);
96 EXPECT_EQ(test_string_smaller,
"base");
97 EXPECT_EQ(test_string_bigger,
"cat");
103 char test_char =
'c';
107 amo_op_int->
execute(&test_int);
108 amo_op_char->
execute(&test_char);
110 EXPECT_EQ(test_int, 9);
111 EXPECT_EQ(test_char,
'b');
117 char test_char =
'c';
121 amo_op_int->
execute(&test_int);
122 amo_op_char->
execute(&test_char);
124 EXPECT_EQ(test_int, 11);
125 EXPECT_EQ(test_char,
'd');
131 char test_char =
'c';
135 amo_op_int->
execute(&test_int);
136 amo_op_char->
execute(&test_char);
138 EXPECT_EQ(test_int, 8);
139 EXPECT_EQ(test_char, 2);
145 char test_char =
'c';
149 amo_op_int->
execute(&test_int);
150 amo_op_char->
execute(&test_char);
152 EXPECT_EQ(test_int, 12);
153 EXPECT_EQ(test_char,
'e');
159 char test_char =
'c';
163 amo_op_int->
execute(&test_int);
164 amo_op_char->
execute(&test_char);
166 EXPECT_EQ(test_int, 2);
167 EXPECT_EQ(test_char,
'a');
173 char test_char =
'c';
177 amo_op_int->
execute(&test_int);
178 amo_op_char->
execute(&test_char);
180 EXPECT_EQ(test_int, 8);
181 EXPECT_EQ(test_char, 2);
187 bool test_bool =
true;
191 amo_op_int->
execute(&test_int);
192 amo_op_bool->
execute(&test_bool);
194 EXPECT_EQ(test_int, 10);
195 EXPECT_EQ(test_bool,
true);
201 char test_char =
'c';
205 amo_op_int->
execute(&test_int);
206 amo_op_char->
execute(&test_char);
208 EXPECT_EQ(test_int, 2);
209 EXPECT_EQ(test_char,
'a');
218 amo_op_int->
execute(&test_int);
220 EXPECT_EQ(test_int, 81);
229 amo_op_int->
execute(&test_int);
231 EXPECT_EQ(test_int, 24);
238 std::array<int, 2>
a = {6, 3};
239 std::array<int, 2>
c = {10, 8};
242 amo_op_int->
execute(&test_int);
244 EXPECT_EQ(test_int, 10);