[lang-ref] ( assert_equals_strict ) ( php )
<?php
public function testAssertEqualsStrict(): void
{
// assertSame($e, $a)
$v = 3;
$this->assertSame(3, $v);
$this->assertNotSame('3', $v); // checks type too
}
<?php
public function testAssertEqualsStrict(): void
{
// assertSame($e, $a)
$v = 3;
$this->assertSame(3, $v);
$this->assertNotSame('3', $v); // checks type too
}