Problem/Motivation
$this->assertSame(FALSE, ...
and $this->assertSame(TRUE, ...
is no longer necessary and can be replace with assertTrue/False()
.
Also $this->assertSame(..., FALSE/TRUE)
.
Proposed resolution
Replace assertSame(TRUE/FALSE,...
with assertTrue/False()
.