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
README에서 kotlin 예제를 보면, setExp를 이용해서 property에 값을 주고 있습니다.
data class Order (
val id: Long,
val orderNo: String,
val productName: String,
val quantity: Int,
val price: Long,
val items: List<String>,
val orderedAt: Instant
)
@Test
fun sampleOrder() {
// given
val sut = FixtureMonkey.builder()
.plugin(KotlinPlugin())
.build()
// when
val actual = sut.giveMeBuilder<Order>()
.setExp(Order::orderNo, "1") //deprecated?
.setExp(Order::productName, "Line Sally")
.minSizeExp(Order::items, 1)
.sample()
// then
then(actual.orderNo).isEqualTo("1")
then(actual.productName).isEqualTo("Line Sally")
then(actual.items).hasSizeGreaterThanOrEqualTo(1)
}
setExp를 사용하려고 코드를 작성하니 deprecated 된 것 같습니다.
혹시 README가 업데이트가 안된 걸까요?
만약 그렇다면, 어떤 함수를 이용해서 property를 업데이트 해줄 수 있을까요?
감사합니다.
The text was updated successfully, but these errors were encountered:
Describe your question
안녕하세요.
fixture monkey 를 만들어주셔서 감사합니다.
README에서 kotlin 예제를 보면, setExp를 이용해서 property에 값을 주고 있습니다.
setExp를 사용하려고 코드를 작성하니 deprecated 된 것 같습니다.
혹시 README가 업데이트가 안된 걸까요?
만약 그렇다면, 어떤 함수를 이용해서 property를 업데이트 해줄 수 있을까요?
감사합니다.
The text was updated successfully, but these errors were encountered: