Expanded class hierarchy of CmfUnitTestCase
class CmfUnitTestCase extends \PHPUnit_Framework_TestCase {
protected function buildMock($class, array $methods = array()) {
return $this
->getMockBuilder($class)
->disableOriginalConstructor()
->setMethods($methods)
->getMock();
}
}
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
CmfUnitTestCase:: |
protected | function |