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
ArbitraryBuilder Kotlin 확장 함수 중 문서에서 제공하는 Java 예제와 동일하게 동작하는 setPostConditionExp 함수가 누락된 것으로 보입니다. 현재는 limit 파라미터가 필수인 버전만 존재하여 Java 예제와 동일한 방식으로 사용하기 어려운 상황입니다.
KotlinTypeDefaultArbitraryBuilder 로 마이그레이션 해서 해결하려고 했지만 thenApply 부분에서 해당 이슈로 불가능한 상황입니다.
Your environment
version of Fixture Monkey: 1.1.8
version of Java/Kotlin: Kotlin 1.8.22
Steps to reproduce
문서의 kotlin 예제처럼 setPostConditionExp를 사용하려고 할 때:
javaCopyfixtureMonkey.giveMeBuilder(Product.class)
.setPostConditionExp(Product::id, Long.class, it -> it > 0)
Describe the bug
ArbitraryBuilder Kotlin 확장 함수 중 문서에서 제공하는 Java 예제와 동일하게 동작하는 setPostConditionExp 함수가 누락된 것으로 보입니다. 현재는 limit 파라미터가 필수인 버전만 존재하여 Java 예제와 동일한 방식으로 사용하기 어려운 상황입니다.
KotlinTypeDefaultArbitraryBuilder 로 마이그레이션 해서 해결하려고 했지만 thenApply 부분에서 해당 이슈로 불가능한 상황입니다.
Your environment
Steps to reproduce
문서의 kotlin 예제처럼 setPostConditionExp를 사용하려고 할 때:
Kotlin에서 동일하게 사용하려고 하면 limit 파라미터가 필수여서 사용할 수 없음:
Expected behaviour
kotlin 예제와 동일하게 limit 파라미터 없이도 setPostConditionExp를 사용할 수 있어야 합니다:
or
Actual behaviour
현재는 limit 파라미터가 필수인 버전만 존재합니다:
The text was updated successfully, but these errors were encountered: