开发者

PHPUnit Test to assert if a function/var is public private or protected?

Is there a way to assert if a method or variable is pub开发者_运维知识库lic private or protected with phpunit?


PHPUnit doesn't provide those assertions, and you typically don't use unit tests to test your typing ability. They should validate that the code works at runtime. Here are more pointless unit tests:

  • Assert that the class is named CorrectClassName.
  • Assert that function foo() { return 5; } returns 5.
  • Assert that function comments don't contain the word "winning".

Now, sometimes you just want to do something even when it's not recommended or has little value. I know I do. :) Add this to your base test case class:

/**
 * Assert that a method has public access.
 *
 * @param string $class name of the class
 * @param string $method name of the method
 * @throws ReflectionException if $class or $method don't exist
 * @throws PHPUnit_Framework_ExpectationFailedException if the method isn't public
 */
function assertPublicMethod($class, $method) {
    $reflector = new ReflectionMethod($class, $method);
    self::assertTrue($reflector->isPublic(), 'method is public');
}

Completing assertProtectedMethod() and assertPrivateMethod() are left as an exercise. You can do the same thing for properties, and you could even make this method more generic to handle a method or property--whichever is found--and throw some other error if neither exist.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜