is there a way to negate an and block? this does n...
# strikt
c
is there a way to negate an and block? this does not work:
Copy code
@Test
  fun `assertions in a block can be globally negated`() {
    val subject: Any? = "fnord"
    expect(subject).not().and {
      isNull()
    }
  }