|
Option
|
Description
|
-r X
|
execute a test X times
|
-t name
|
execute only the test with the given name
|
-s Y
|
execute the test with Y worker threads
|
-v
|
turn on the verbose mode
|
-w Z
|
wait Z milliseconds between two test
|
Invocation
|
Description
|
-r 10 -v -w 100 test.junit.extensions.AllTests
|
Executes the test suite 10 times with a delay of 100ms providing verbose output
|
-t testSendSignedEmailWithAttachment -r 1000 -s 5 test.org.webdocwf.util.smime.smime.SMimeTest
|
Execute the test case with the name "testSendSignedEmailWithAttachment" within
"test.org.webdocwf.util.smime.smime.SMimeTest" 1000 times with 5 worker thread resulting
in 5000 test case executions
|
|