The seed format is suite:method, clarified it in the docs.

This commit is contained in:
Dawid Weiss 2014-02-20 14:46:59 +01:00 committed by Simon Willnauer
parent 57f40fe691
commit aa3897280c
1 changed files with 5 additions and 4 deletions

View File

@ -67,7 +67,8 @@ mvn test -Dtests.seed=DEADBEEF
=== Repeats _all_ tests of ClassName N times.
Every test repetition will have a different seed.
Every test repetition will have a different method seed
(derived from a single random master seed).
--------------------------------------------------
mvn test -Dtests.iters=N -Dtests.class=*.ClassName
@ -75,11 +76,11 @@ mvn test -Dtests.iters=N -Dtests.class=*.ClassName
=== Repeats _all_ tests of ClassName N times.
Every test repetition will have exactly the same master (dead) and
method-level (beef) seed.
Every test repetition will have exactly the same master (0xdead) and
method-level (0xbeef) seed.
------------------------------------------------------------------------
mvn test -Dtests.iters=N -Dtests.class=*.ClassName -Dtests.seed=DEADBEEF
mvn test -Dtests.iters=N -Dtests.class=*.ClassName -Dtests.seed=DEAD:BEEF
------------------------------------------------------------------------
=== Repeats a given test N times