- Timestamp:
- 01/27/10 08:23:50 (2 years ago)
- Location:
- trunk/mgunit/src
- Files:
-
- 1 added
- 1 modified
-
mgunit.pro (modified) (3 diffs)
-
mgutjunitrunner__define.pro (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/mgunit/src/mgunit.pro
r78 r81 18 18 ; xml : in, optional, type=boolean 19 19 ; set to indicate XML output instead of plain text 20 ; junit : in, optional, type=boolean 21 ; set to indicate XML output in JUnit format instead of plain text 20 22 ; gui : in, optional, type=boolean 21 23 ; set to bring up an interactive GUI to run the tests … … 27 29 ; number of tests 28 30 ;- 29 pro mgunit, tests, filename=filename, html=html, xml=xml, gui=gui, $31 pro mgunit, tests, filename=filename, html=html, xml=xml, gui=gui, junit=junit, $ 30 32 color=color, $ 31 33 npass=npass, nfail=nfail, ntests=ntests … … 36 38 keyword_set(html): runnerName = 'MGutHtmlRunner' 37 39 keyword_set(xml): runnerName = 'MGutXmlRunner' 40 keyword_set(junit): runnerName = 'MGutJUnitRunner' 38 41 else: runnerName = 'MgutCliRunner' 39 42 endcase
