我对 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".