Currently, we write: ```java assertThat(myValue.getMyProperty()).isNotNull() ``` Nicer would be: ```java assertThat(myValue).hasAnyMyProperty() ```