scilab: implement template_ns test
This commit is contained in:
parent
1711a7d15d
commit
efdb52fa83
1 changed files with 15 additions and 0 deletions
15
Examples/test-suite/scilab/template_ns_runme.sci
Normal file
15
Examples/test-suite/scilab/template_ns_runme.sci
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
exec("swigtest.start", -1);
|
||||
|
||||
p1 = new_pairii(2, 3);
|
||||
p2 = new_pairii(p1);
|
||||
|
||||
checkequal(pairii_first_get(p2), 2, "pairii_first(p2) test fails.");
|
||||
checkequal(pairii_second_get(p2), 3, "pairii_second(p2) test fails.");
|
||||
|
||||
p3 = new_pairdd(0.5, 2.5);
|
||||
p4 = new_pairdd(p3);
|
||||
|
||||
checkequal(pairdd_first_get(p4), 0.5, "pairdd_first(p4) test fails.");
|
||||
checkequal(pairdd_second_get(p4), 2.5, "pairdd_second(p4) test fails.");
|
||||
|
||||
exec("swigtest.quit", -1);
|
||||
Loading…
Add table
Add a link
Reference in a new issue