- Timestamp:
- 09/17/10 21:18:54 (20 months ago)
- Files:
-
- 1 modified
-
trunk/src/mgunit.pro (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/mgunit.pro
r81 r101 26 26 ; nfail : out, optional, type=long 27 27 ; number of tests that failed 28 ; nskip : out, optional, type=long 29 ; number of tests that were skipped 28 30 ; ntests : out, optional, type=long 29 31 ; number of tests … … 31 33 pro mgunit, tests, filename=filename, html=html, xml=xml, gui=gui, junit=junit, $ 32 34 color=color, $ 33 npass=npass, nfail=nfail, n tests=ntests35 npass=npass, nfail=nfail, nskip=nskip, ntests=ntests 34 36 compile_opt strictarr 35 37 … … 58 60 testsuite->add, tests 59 61 testsuite->run 60 testsuite->getProperty, npass=npass, nfail=nfail, ntests=ntests 62 testsuite->getProperty, npass=npass, nfail=nfail, nskip=nskip, $ 63 ntests=ntests 61 64 62 65 if (~keyword_set(gui)) then obj_destroy, testRunner
