Given the test class below, which code snippet would be a correct assertion?
assertThat(resultAdd).isWqualTo(2.0)
assertNotNull(resultAdd)
assertThat(resultAdd).is(2.0)
assertThat(resultAdd)