php – 单元测试在第n次调用函数时抛出异常

前端之家收集整理的这篇文章主要介绍了php – 单元测试在第n次调用函数时抛出异常前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
假设你有一种最终归结为的方法
class Pager
{
    private $i;

    public function next()
    {
        if ($this->i >= 3) {
            throw new OutOfBoundsException();
        }

        $this->i++;
    }
}

你将如何对这门课程进行单元测试.即测试是否在使用PHPUnit的next()的第三次调用中抛出异常?我添加了我的尝试作为答案,但我不确定这是否真的是要走的路.

如何在前两个调用上测试null并测试抛出的异常,如下所示:
class PagerTest
{
    public function setUp()
    {
        $this->pager = new Pager();
    }

    public function testTooManyNextCalls()
    {
        $this->assertNull($this->pager->next());
        $this->assertNull($this->pager->next());
        $this->assertNull($this->pager->next());

        $this->setExpectedException('OutOfBoundsException');
        $this->pager->next();
    }
}

猜你在找的PHP相关文章