This assertions are available for all objects:
anObject shouldBeEqualTo anotherObject
anObject shouldNotBeEqualTo anotherObject
anObject shouldBe anObject
anObject shouldNotBe anotherObject
anObject shouldBeInstanceOf Any::class
anObject shouldNotBeInstanceOf Int::class
anObject.shouldBeNull()
anObject.shouldNotBeNull()
isMale.shouldBeTrue()
isMale.shouldBeFalse()
isMale.shouldNotBeTrue()
isMale.shouldNotBeFalse()
fail("You did not know the airspeed velocity of an unladen swallow!")