This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class MyClass { | |
protected function myProtectedMethod($param){ | |
return "Protected Method with param" . " " . $param; | |
} | |
} | |
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require_once 'myClass.php'; | |
class MyTestClass extends PHPUnit_Framework_TestCase { | |
public function testMyProtectedMethod(){ | |
$myClass = new MyClass(); | |
$value = $myClass->myProtectedMethod('param1'); | |
$this->assertEquals("Protected Method with param param1", $value); | |
} | |
} | |
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require_once 'myClass.php'; | |
class MyTestClass extends PHPUnit_Framework_TestCase { | |
private function _callProtectedFunction($name, $params) { | |
$class = new ReflectionClass('MyClass'); | |
$method = $class->getMethod($name); | |
$method->setAccessible(true); | |
return $method->invokeArgs(new MyClass(), $params); | |
} | |
public function testMyProtectedMethod() { | |
$value = $this->_callProtectedFunction('myProtectedMethod', array('param1')); | |
$this->assertEquals("Protected Method with param param1", $value); | |
} | |
} | |
?> |