Interface SeedDecorator
-
- All Known Implementing Classes:
MixWithSuiteName
public interface SeedDecorator
This is an advanced feature. SeeSeedDecorators
annotation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
decorate(long seed)
Called to decorate the initial seed for aRandomness
.void
initialize(java.lang.Class<?> suiteClass)
Called once after instantiation to set up the decorator.
-
-
-
Method Detail
-
initialize
void initialize(java.lang.Class<?> suiteClass)
Called once after instantiation to set up the decorator.
-
decorate
long decorate(long seed)
Called to decorate the initial seed for aRandomness
.
-
-