diff options
author | daniel <danieruru@gmail.com> | 2013-01-11 18:24:43 +0900 |
---|---|---|
committer | daniel <danieruru@gmail.com> | 2013-01-11 18:24:43 +0900 |
commit | 7d4fa5278ace3dd96dda1bf4da75d617fd3e2795 (patch) | |
tree | da903274305c49df85c7ac8f8d6cbf3385a6dfb9 /libvxi11client/perlbits/VXI11-Client.t | |
parent | 2287a7ca37de5dadf9eda790e3afa96262cb9e76 (diff) |
add more tests and a top level for perl wrapping
Diffstat (limited to 'libvxi11client/perlbits/VXI11-Client.t')
-rw-r--r-- | libvxi11client/perlbits/VXI11-Client.t | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/libvxi11client/perlbits/VXI11-Client.t b/libvxi11client/perlbits/VXI11-Client.t index de10ecf..4d68c37 100644 --- a/libvxi11client/perlbits/VXI11-Client.t +++ b/libvxi11client/perlbits/VXI11-Client.t @@ -8,7 +8,7 @@ use strict; use warnings; -use Test::More tests => 5; +use Test::More tests => 12; BEGIN { use_ok('VXI11::Client') }; ######################### @@ -16,7 +16,16 @@ BEGIN { use_ok('VXI11::Client') }; # Insert your test code below, the Test::More module is use()ed here so read # its man page ( perldoc Test::More ) for help writing this test script. -is(&VXI11::Client::vxi11_open("roi", 0), 1); -is(&VXI11::Client::vxi11_lock(0), 1); -is(&VXI11::Client::vxi11_unlock(), 1); -is(&VXI11::Client::vxi11_close(), 1); +is(&VXI11::Client::vopen("roi", 0), 1); +is(&VXI11::Client::vlock(0), 1); +is(&VXI11::Client::vwrite("*IDN?", 6, 0, 0), 6); +ok(&VXI11::Client::vreadstatusbyte(0) >= 0 , "Read status byte"); +# is(&VXI11::Client::vcreate_intr_chan(), 1); +# is(&VXI11::Client::vdestroy_intr_chan(), 1); +is(&VXI11::Client::vabort(), 1); +is(&VXI11::Client::vclear(0), 1); +is(&VXI11::Client::vtrigger(0), 1); +is(&VXI11::Client::vlocal(0), 1); +is(&VXI11::Client::vremote(0), 1); +is(&VXI11::Client::vunlock(), 1); +is(&VXI11::Client::vclose(), 1); |