在上一篇文章中,已经介绍了setUp方法和tearDown方法,这里的setUp方法中,建立了Testable()实例并保存在变量$_testable中,而在tearDown方法中,销毁了该对象。
接下来,开始编写一些断言去测试,首先看assertTrue和assertFalase:
<?php
publicfunction testTruePropertyIsTrue()
{
$this->assertTrue($this->_testable->trueProperty,"trueProperty isn't true");
}
publicfunction testTruePropertyIsFalse()
{
$this->assertFalse($this->_testable->trueProperty,"trueProperty isn't false");
}
?>
1
您可能感兴趣的文章: