aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/arithmetic_operators.c
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-01-24 01:43:01 +0900
committernsfisis <nsfisis@gmail.com>2026-01-24 01:43:01 +0900
commitc780cbb6acd0e0526f2d305138190392bdc8cdd7 (patch)
treedf1edba6eb5778a00e1f4c8a5051414d5bb37e71 /tests/arithmetic_operators.c
parentd179d944c0633d3aa2420009335791b115f67052 (diff)
downloadducc-c780cbb6acd0e0526f2d305138190392bdc8cdd7.tar.gz
ducc-c780cbb6acd0e0526f2d305138190392bdc8cdd7.tar.zst
ducc-c780cbb6acd0e0526f2d305138190392bdc8cdd7.zip
refactor: organize test files
Diffstat (limited to 'tests/arithmetic_operators.c')
-rw-r--r--tests/arithmetic_operators.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/arithmetic_operators.c b/tests/arithmetic_operators.c
deleted file mode 100644
index e7cfe95..0000000
--- a/tests/arithmetic_operators.c
+++ /dev/null
@@ -1,9 +0,0 @@
-#include <helpers.h>
-
-int main() {
- ASSERT_EQ(42, 42);
- ASSERT_EQ(21, 5 + 20 - 4);
- ASSERT_EQ(26, 2 * 3 + 4 * 5);
- ASSERT_EQ(197, (((3 + 5) / 2) + (5 * (9 - 6)) * (5 + 6 * 7)) % 256);
- ASSERT_EQ(30, (-10 + 20 * -3) + 100);
-}