PHPUnit测试函数在类之外

时间:2012-06-29 22:25:31

标签: php unit-testing phpunit

我是PHPUnit和单元测试的新手,所以我有一个任务: 我可以测试类之外的函数:

    function odd_or_even( $num ) {
    return $num%2; // Returns 0 for odd and 1 for even
}

class test extends PHPUnit_Framework_TestCase {
    public function odd_or_even_to_true() {
        $this->assetTrue( odd_or_even( 4 ) == true );
    }
}

现在它只是返回:

No tests found in class "test".

1 个答案:

答案 0 :(得分:13)

您需要在函数名前加上'test',以便将它们识别为测试。

From the documentation:

  
      
  1. 测试是公共方法,名为test *。
  2.         

    或者,您可以在方法的docblock中使用@test注释将其标记为测试方法。

调用odd_or_even()应该没问题。

例如:

class test extends PHPUnit_Framework_TestCase {
    public function test_odd_or_even_to_true() {
        $this->assertTrue( odd_or_even( 4 ) == true );
    }
}