Changeset 23
- Timestamp:
- 11/11/08 12:58:55 (2 months ago)
- Files:
-
- trunk/mgunit/src/mgunit.pro (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/mgunit/src/mgunit.pro
r22 r23 16 16 ; npass : out, optional, type=long 17 17 ; number of tests that passed 18 ; nfail : out, optional, type=long 19 ; number of tests that failed 18 20 ; ntests : out, optional, type=long 19 21 ; number of tests 20 22 ;- 21 pro mgunit, tests, filename=filename, html=html, npass=npass, ntests=ntests 23 pro mgunit, tests, filename=filename, html=html, $ 24 npass=npass, nfail=nfail, ntests=ntests 22 25 compile_opt strictarr 23 26 … … 34 37 testsuite->add, tests 35 38 testsuite->run 36 testsuite->getProperty, npass=npass, n tests=ntests39 testsuite->getProperty, npass=npass, nfail=nfail, nfail, ntests=ntests 37 40 obj_destroy, testsuite 38 41 endif
