Skip to content

Releases: Nylle/JavaFixture

2.3.0

09 Nov 09:07
Compare
Choose a tag to compare

The annotation @TestWithFixture can now be configured:
https://github.com/Nylle/JavaFixture#inject-random-values-into-single-test

2.2.0

09 Nov 09:04
Compare
Choose a tag to compare

Fixture can now be also configured fluently:
https://github.com/Nylle/JavaFixture#configuration

2.1.2

31 Mar 17:49
06dba9b
Compare
Choose a tag to compare

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 other Set. Instead it has to be created by providing the values it should contain which all need to be from the same Enum.
  • EnumMap is similar in that it cannot be simply constructed like any other Map, although it can be created empty in order to add elements subsequently. The constructor however requires the type of the key which has to extend Enum.

2.1.1

30 Mar 16:12
Compare
Choose a tag to compare
  • With this release, the instantiation of abstract classes should be possible.
  • Additionally, java.util.Date and java.sql.Date are included for creation through the TimeSpecimen (they had been forgotten previously).