Skip to content

Releases: jparams/to-string-verifier

Version 1.4.8

03 Jan 17:03
Compare
Choose a tag to compare

Updated to newest version of Object Builder - this adds support for Instant class

Version 1.4.7

05 Nov 17:04
Compare
Choose a tag to compare

Fix for bug #24

Version 1.4.6

05 Nov 16:31
Compare
Choose a tag to compare

Fixed bug #22

Fix:

  • Added support of Instant
  • Added method withValueProvider

Version 1.4.5

14 Dec 16:45
f4eacc4
Compare
Choose a tag to compare

Fix for bug #18

Version 1.4.4

29 Nov 13:18
fee514d
Compare
Choose a tag to compare

I have updated the version of the Object Builder library, which has a huge improvement on how generics are handled. This is an important change as the Object Builder library plays key role in how the test subject is generated.

Version 1.4.3

13 Sep 20:31
2b17d5f
Compare
Choose a tag to compare
  • Update to latest version object-builder. This includes many improvements and stability in the way test objects are generated.

Version 1.4.2

08 Sep 11:26
b752c0a
Compare
Choose a tag to compare
  • Update to readme
  • Fix javadoc comments

Version 1.4.1

07 Sep 13:50
Compare
Choose a tag to compare

Added ToStringVerifier.withFailOnExcludedFields(boolean)

This allows the user to define how the verifier should behave if the Object.toString() output contains a field that has been explicitly excluded by calling withIgnoredFields(String…) or implicitly excluded by calling withOnlyTheseFields(String…) or withMatchingFields(String). By default, the verifier will not test for the presence of the excluded fields and will not fail if they exist in the Object.toString() output when they should not. You can change this behaviour by setting failOnExcludedFields to true.

Version 1.3.1

04 Sep 16:38
Compare
Choose a tag to compare
  • Added some popular vendor presets, see com.jparams.verifier.tostring.preset.Presets.
  • Added ability to specify presets: ToStringVerifier.forClass(MyClass.class).withPreset(Presets.INTELLI_J).verify()

Version 1.2.3

30 Aug 06:11
a300572
Compare
Choose a tag to compare

Update to latest version of object-builder for better error handling