If you want to group assertions on a chained subject the only choice is to use `and` but it's not very grammatical: ```kotlin expectThat(foo).get { bar } and { get { baz }.isEqualTo("fnord") get { qux }.isEqualTo("fnord") } ```
If you want to group assertions on a chained subject the only choice is to use
andbut it's not very grammatical:expectThat(foo).get { bar } and { get { baz }.isEqualTo("fnord") get { qux }.isEqualTo("fnord") }