about summary refs log tree commit diff stats
path: root/js/scripting-lang/tests/05_io_operations.txt
diff options
context:
space:
mode:
Diffstat (limited to 'js/scripting-lang/tests/05_io_operations.txt')
-rw-r--r--js/scripting-lang/tests/05_io_operations.txt28
1 files changed, 28 insertions, 0 deletions
diff --git a/js/scripting-lang/tests/05_io_operations.txt b/js/scripting-lang/tests/05_io_operations.txt
new file mode 100644
index 0000000..a16bf94
--- /dev/null
+++ b/js/scripting-lang/tests/05_io_operations.txt
@@ -0,0 +1,28 @@
+/* Unit Test: IO Operations */
+/* Tests: ..out, ..assert operations */
+
+/* Test basic output */
+..out "Testing IO operations";
+
+/* Test assertions */
+x : 5;
+y : 3;
+sum : x + y;
+
+..assert x = 5;
+..assert y = 3;
+..assert sum = 8;
+..assert x > 3;
+..assert y < 10;
+..assert sum != 0;
+
+/* Test string comparisons */
+..assert "hello" = "hello";
+..assert "world" != "hello";
+
+/* Test complex assertions */
+..assert (x + y) = 8;
+..assert (x * y) = 15;
+..assert (x > y) = true;
+
+..out "IO operations test completed"; 
\ No newline at end of file