e.g. ```expectThat(person) .with(Person::name) {...
# strikt
r
e.g.
Copy code
expectThat(person)
  .with(Person::name) {
    // assertions about the name
  }
  .with(Person::address) {
    // assertions about the address
  }