a coworker found an interesting error today: ``` c...
# strikt
c
a coworker found an interesting error today:
Copy code
class JavaInteropTest {
  @Test
  fun `isEquals works with java fields that are null`() {
    val p = PersonJava(null, null, null, null)
    expect(p.name).isEqualTo("blah")
  }
}