31 #include <gtest/gtest.h>
62 int test_int_smaller = 5;
63 int test_int_bigger = 15;
64 std::string test_string_smaller =
"apple";
65 std::string test_string_bigger =
"cat";
70 amo_op_int->
execute(&test_int_smaller);
71 amo_op_int->
execute(&test_int_bigger);
72 amo_op_string->
execute(&test_string_smaller);
73 amo_op_string->
execute(&test_string_bigger);
75 EXPECT_EQ(test_int_smaller, 5);
76 EXPECT_EQ(test_int_bigger, 10);
77 EXPECT_EQ(test_string_smaller,
"apple");
78 EXPECT_EQ(test_string_bigger,
"base");
83 int test_int_smaller = 5;
84 int test_int_bigger = 15;
85 std::string test_string_smaller =
"apple";
86 std::string test_string_bigger =
"cat";
91 amo_op_int->
execute(&test_int_smaller);
92 amo_op_int->
execute(&test_int_bigger);
93 amo_op_string->
execute(&test_string_smaller);
94 amo_op_string->
execute(&test_string_bigger);
96 EXPECT_EQ(test_int_smaller, 10);
97 EXPECT_EQ(test_int_bigger, 15);
98 EXPECT_EQ(test_string_smaller,
"base");
99 EXPECT_EQ(test_string_bigger,
"cat");
105 char test_char =
'c';
109 amo_op_int->
execute(&test_int);
110 amo_op_char->
execute(&test_char);
112 EXPECT_EQ(test_int, 9);
113 EXPECT_EQ(test_char,
'b');
119 char test_char =
'c';
123 amo_op_int->
execute(&test_int);
124 amo_op_char->
execute(&test_char);
126 EXPECT_EQ(test_int, 11);
127 EXPECT_EQ(test_char,
'd');
133 char test_char =
'c';
137 amo_op_int->
execute(&test_int);
138 amo_op_char->
execute(&test_char);
140 EXPECT_EQ(test_int, 8);
141 EXPECT_EQ(test_char, 2);
147 char test_char =
'c';
151 amo_op_int->
execute(&test_int);
152 amo_op_char->
execute(&test_char);
154 EXPECT_EQ(test_int, 12);
155 EXPECT_EQ(test_char,
'e');
161 char test_char =
'c';
165 amo_op_int->
execute(&test_int);
166 amo_op_char->
execute(&test_char);
168 EXPECT_EQ(test_int, 2);
169 EXPECT_EQ(test_char,
'a');
175 char test_char =
'c';
179 amo_op_int->
execute(&test_int);
180 amo_op_char->
execute(&test_char);
182 EXPECT_EQ(test_int, 8);
183 EXPECT_EQ(test_char, 2);
189 bool test_bool =
true;
193 amo_op_int->
execute(&test_int);
194 amo_op_bool->
execute(&test_bool);
196 EXPECT_EQ(test_int, 10);
197 EXPECT_EQ(test_bool,
true);
203 char test_char =
'c';
207 amo_op_int->
execute(&test_int);
208 amo_op_char->
execute(&test_char);
210 EXPECT_EQ(test_int, 2);
211 EXPECT_EQ(test_char,
'a');
220 amo_op_int->
execute(&test_int);
222 EXPECT_EQ(test_int, 81);
231 amo_op_int->
execute(&test_int);
233 EXPECT_EQ(test_int, 24);
240 std::array<int, 2>
a = {6, 3};
241 std::array<int, 2>
c = {10, 8};
244 amo_op_int->
execute(&test_int);
246 EXPECT_EQ(test_int, 10);