- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 18
Open
Description
Thank you for creating the wonderful fixtures library.
While using public member properties overridden by reference, I thought it would be more convenient if it could be used as an infix function like below. What do you think about adding an infix function?
Here is the example code
data class Foo(
val bar: String
)
@Test
fun `test`() {
val foo = fixture {
Foo::bar property { "bar" }
}
}
nobel6018
Activity
hungrytech commentedon Jul 26, 2024
I have submitted a PR #110 with the infix function implementation. I would appreciate it if you could review it. Thank you.