diff options
author | simon | 2009-07-17 13:35:52 +0000 |
---|---|---|
committer | simon | 2009-07-17 13:35:52 +0000 |
commit | 701816cbe04b14d1f38803778f2c65bc05ecfc67 (patch) | |
tree | c1325af3592dd3e789773c4a499cfa31c31380d2 /tests/unit_tests | |
parent | 86ab283b92413fb31003ac20d54befe27051a7ef (diff) | |
download | scilab2c-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.sci | 13 |
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 + |