You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a fault in the current document where the code does not match the latest release version. (kotlin)
Fault Code
val fixtureMonkey =FixtureMonkey
.plugin(KotlinPlugin())
.build()
Correct Code
val fixtureMonkey =FixtureMonkey.builder()
.build()
orval fixtureMonkey =FixtureMonkey.builder()
.plugin(KotlinPlugin())
.build()
Your environment
fixture monkey : 1.0.2
kotlin : 2.0.0
Steps to reproduce
Tell us how to reproduce this issue. Or provide us an example repository to check the bug It would be very helpful if you could tell us the seed of the given test, which is provided in fixture-monkey-junit-jupiter module
Expected behaviour
Tell us what should happen
Actual behaviour
Tell us what happens instead
Best Regards
The text was updated successfully, but these errors were encountered:
Describe the bug
fault link
https://naver.github.io/fixture-monkey/v1-0-0/docs/generating-objects/fixture-monkey/
There is a fault in the current document where the code does not match the latest release version. (kotlin)
Fault Code
Correct Code
Your environment
Steps to reproduce
Tell us how to reproduce this issue.
Or provide us an example repository to check the bug
It would be very helpful if you could tell us the seed of the given test, which is provided in
fixture-monkey-junit-jupiter
moduleExpected behaviour
Tell us what should happen
Actual behaviour
Tell us what happens instead
Best Regards
The text was updated successfully, but these errors were encountered: