assertInternalType()
最后更新于:2022-04-01 03:47:41
# assertInternalType()
>[info] ## assertInternalType($expected, $actual[, $message = ''])
当 `$actual` 不是 `$expected` 所指明的类型时报告错误,错误讯息由 `$message` 指定。
`assertNotInternalType()` 是与之相反的断言,接受相同的参数。
`assertAttributeInternalType()` 和 `assertAttributeNotInternalType()` 是便捷包装(convenience wrapper),可以应用于某个类或对象的某个 `public`、`protected` 或 `private` 属性。
**Example A.25. assertInternalType() 的用法**
~~~
<?php
class InternalTypeTest extends PHPUnit_Framework_TestCase
{
public function testFailure()
{
$this->assertInternalType('string', 42);
}
}
?>
~~~
~~~
phpunit InternalTypeTest
PHPUnit 5.0.0 by Sebastian Bergmann and contributors.
F
Time: 0 seconds, Memory: 5.00Mb
There was 1 failure:
1) InternalTypeTest::testFailure
Failed asserting that 42 is of type "string".
/home/sb/InternalTypeTest.php:6
FAILURES!
Tests: 1, Assertions: 1, Failures: 1.
~~~