| 123456789101112131415161718192021222324252627282930313233343536373839 |
- #include <catch.hpp>
- #include <luwra.hpp>
- static
- int test_function_1(int a, int b) {
- return a - b;
- }
- static
- int test_function_2(int a, int b, int c) {
- return a + b * c;
- }
- static
- void test_function_3(int) {
- }
- TEST_CASE("StackInteraction") {
- luwra::StateWrapper state;
- luwra::push(state, 1);
- luwra::push(state, 2);
- luwra::push(state, 4);
- // Redundant function
- luwra::apply(state, test_function_3);
- // Absolute index
- REQUIRE(luwra::apply(state, test_function_1) == -1);
- REQUIRE(luwra::apply(state, 1, test_function_1) == -1);
- REQUIRE(luwra::apply(state, test_function_2) == 9);
- REQUIRE(luwra::apply(state, 1, test_function_2) == 9);
- // Relative index
- REQUIRE(luwra::apply(state, -2, test_function_1) == -2);
- REQUIRE(luwra::apply(state, -3, test_function_1) == -1);
- REQUIRE(luwra::apply(state, -3, test_function_2) == 9);
- }
|