c-repl/test/bool_logic.cpp

57 lines
1.0 KiB
C++
Raw Permalink Normal View History

2024-01-12 14:10:23 +01:00
#include "include/test.hpp"
2024-01-12 14:10:23 +01:00
#include "../src/include/execute.hpp"
#include "../src/include/utils.hpp"
int execute(string s) {
2024-01-03 16:20:42 +01:00
Memory memory;
return get<int>(execute(split_string(s, '\n'), memory));
}
int main() {
_TEST_PRESENTATION("Logique Booléenne");
_TEST_ASSERT(
_TEST_NO_EXCEPTION(execute("1 && 0;") == 0),
"Et",
true
);
_TEST_ASSERT(
_TEST_NO_EXCEPTION(execute("1 || 0;") == 1),
"Ou",
true
);
_TEST_ASSERT(
_TEST_NO_EXCEPTION(execute("!1;") == 0),
"Négation",
true
);
_TEST_ASSERT(
_TEST_NO_EXCEPTION(execute("2 == 2;") == 1),
"Égalité",
true
);
_TEST_ASSERT(
_TEST_NO_EXCEPTION(execute("2 != 2;") == 0),
"Différence",
true
);
_TEST_ASSERT(
_TEST_NO_EXCEPTION(execute("0 == 0 || 1;") == 1),
"Parenthésage",
true
);
_TEST_ASSERT(
_TEST_NO_EXCEPTION(execute("2 == 1 + 1;") == 1),
"Priorités",
true
);
return 0;
}