Home
last modified time | relevance | path

Searched refs:createPartialMock (Results 1 – 5 of 5) sorted by relevance

/plugin/authgooglesheets/vendor/psr/log/Psr/Log/Test/
H A DLoggerInterfaceTest.php89 $dummy = $this->createPartialMock('Psr\Log\Test\DummyTest', array('__toString'));
/plugin/elasticsearch/vendor/psr/log/Psr/Log/Test/
H A DLoggerInterfaceTest.php88 if (method_exists($this, 'createPartialMock')) {
89 $dummy = $this->createPartialMock('Psr\Log\Test\DummyTest', array('__toString'));
/plugin/dw2pdf/vendor/psr/log/Psr/Log/Test/
H A DLoggerInterfaceTest.php88 if (method_exists($this, 'createPartialMock')) {
89 $dummy = $this->createPartialMock('Psr\Log\Test\DummyTest', array('__toString'));
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Framework/
H A DTestCaseTest.php605 $mock = $this->createPartialMock(Mockable::class, ['foo']);
614 $mock = $this->createPartialMock(Mockable::class, []);
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/
H A DTestCase.php1500 protected function createPartialMock($originalClassName, array $methods) function in PHPUnit_Framework_TestCase