summaryrefslogtreecommitdiff
path: root/tests/unit_tests
diff options
context:
space:
mode:
authorsimon2009-07-17 13:35:52 +0000
committersimon2009-07-17 13:35:52 +0000
commit701816cbe04b14d1f38803778f2c65bc05ecfc67 (patch)
treec1325af3592dd3e789773c4a499cfa31c31380d2 /tests/unit_tests
parent86ab283b92413fb31003ac20d54befe27051a7ef (diff)
downloadscilab2c-701816cbe04b14d1f38803778f2c65bc05ecfc67.tar.gz
scilab2c-701816cbe04b14d1f38803778f2c65bc05ecfc67.tar.bz2
scilab2c-701816cbe04b14d1f38803778f2c65bc05ecfc67.zip
added test for disp
updated INIT_FillSCI2LibCDirsI
Diffstat (limited to 'tests/unit_tests')
-rw-r--r--tests/unit_tests/test_double_Disp.sci13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/unit_tests/test_double_Disp.sci b/tests/unit_tests/test_double_Disp.sci
new file mode 100644
index 00000000..4d1f7185
--- /dev/null
+++ b/tests/unit_tests/test_double_Disp.sci
@@ -0,0 +1,13 @@
+function test_double_Disp ()
+
+ disp(4.5);
+ disp(4+3*%i);
+ disp("a");
+
+ disp([1 2 3 4 5 ; 6 7 8 9 10]);
+ disp(%i*[1 2 3 4 5 ; 6 7 8 9 10]);
+ disp("plop");
+
+
+endfunction
+