That's what I've seen too -- it picks the master seed once and then all iters pick their own derivative seeds. So if the test is random at the before/after/test level, it usually was enough to find bugs after many iterations.
Shai On Tue, Oct 15, 2013 at 4:26 PM, Dawid Weiss <[email protected]>wrote: > >> What do you mean? Doesn't it execute the test many times, picking > different > >> seeds each time? > > Only at the test (method) level, at @Before @After hooks and at @Rule > blocks. @BeforeClass, @AfterClass and class rules are ran with an > identical seed (because you'd have to effectively reload the class > under a different class loader or rerun under a different JVM). > > This has been long on my list of things to fix, but it's not as > trivial as it sounds to change it. > > Dawid > > >> > > > > No it does not!!!!!! > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: [email protected] > > For additional commands, e-mail: [email protected] > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > >
