Releases: Nylle/JavaFixture
Releases · Nylle/JavaFixture
2.3.0
The annotation @TestWithFixture
can now be configured:
https://github.com/Nylle/JavaFixture#inject-random-values-into-single-test
2.2.0
Fixture
can now be also configured fluently:
https://github.com/Nylle/JavaFixture#configuration
2.1.2
The special cases EnumSet
and EnumMap
can now also be created with JavaFixture.
EnumSet
is a bit of a snowflake in that it cannot be constructed through a default constructor like any otherSet
. Instead it has to be created by providing the values it should contain which all need to be from the sameEnum
.EnumMap
is similar in that it cannot be simply constructed like any otherMap
, although it can be created empty in order to add elements subsequently. The constructor however requires the type of the key which has to extendEnum
.