Changeset 101 for trunk

Show
Ignore:
Timestamp:
09/17/10 21:18:54 (20 months ago)
Author:
mgalloy
Message:

Adding NSKIP keyword to MGUNIT to determine the number of skipped tests.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/mgunit.pro

    r81 r101  
    2626;    nfail : out, optional, type=long 
    2727;       number of tests that failed 
     28;    nskip : out, optional, type=long 
     29;       number of tests that were skipped 
    2830;    ntests : out, optional, type=long 
    2931;       number of tests       
     
    3133pro mgunit, tests, filename=filename, html=html, xml=xml, gui=gui, junit=junit, $ 
    3234            color=color, $ 
    33             npass=npass, nfail=nfail, ntests=ntests 
     35            npass=npass, nfail=nfail, nskip=nskip, ntests=ntests 
    3436  compile_opt strictarr 
    3537 
     
    5860    testsuite->add, tests 
    5961    testsuite->run 
    60     testsuite->getProperty, npass=npass, nfail=nfail, ntests=ntests 
     62    testsuite->getProperty, npass=npass, nfail=nfail, nskip=nskip, $ 
     63                            ntests=ntests 
    6164     
    6265    if (~keyword_set(gui)) then obj_destroy, testRunner