-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add generating a circular-reference object #519
Conversation
Is there any ETA of when this will be released? |
98ba717
to
b2ffed0
Compare
@esfomeado |
@seongahjo Thank you. You're a hero. |
Hi, should this implementation work with |
@lfcazambuja |
@seongahjo Maybe. I have a situation here, but I need more time to test and check if I'm not making some mistake. |
@seongahjo I've got some time to go back to the scenario I mentioned last december, and I have an issue: My starting point is the test provided here: if I change this piece of code
into this one (which I was using last december)
the My
Should I stop using What is your recommendation? Thanks in advance. |
@lfcazambuja Try with 0.4.11 as I have found some issues on the latest versions as well. |
@lfcazambuja
public static FixtureMonkey monkey() {
return FixtureMonkey.labMonkeyBuilder()
.objectIntrospector(FieldReflectionArbitraryIntrospector.INSTANCE)
.defaultNotNull(true)
.build();
} Since 0.5, a |
Summary
Add generating a circular-reference object
(Optional): Description
순환참조일 경우 1-depth까지만 생성합니다.
For example,
How Has This Been Tested?
sampleSelfRecursiveObject
sampleSelfRecursiveList
sampleRecursiveObject
resolves #495