Данная проверка проходит так:
$result = true; $this->assertEquals('You have not enough rights', $result, "bla bla bla");
и так:
$result = 'You have not enough rights'; $this->assertEquals('You have not enough rights', $result, "bla bla bla");
Интересно, правда? Чтобы тесты вернули свою актуальность, необходимо добавить еще один асерт - PHPUnit_Framework_Assert::assertInternalType():
$result = true; $this->assertInternalType('string', $result); $this->assertEquals('You have not enough rights', $result, "bla bla bla");
Комментариев нет:
Отправить комментарий