Last active
December 4, 2019 14:55
-
-
Save fbourigault/8e6298706db421bee040d57dfe51000f to your computer and use it in GitHub Desktop.
Mock Exception Interface
This file contains hidden or 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
--TEST-- | |
\PHPUnit\Framework\MockObject\Generator::generate('Baz', [], 'MockBaz', true, true) | |
--FILE-- | |
<?php declare(strict_types=1); | |
interface Bar extends \Throwable | |
{ | |
public function foo(): string; | |
} | |
interface Baz extends Bar | |
{ | |
} | |
require __DIR__ . '/../../../../vendor/autoload.php'; | |
$generator = new \PHPUnit\Framework\MockObject\Generator; | |
$mock = $generator->generate( | |
'Baz', | |
[], | |
'MockBaz', | |
true, | |
true | |
); | |
print $mock->getClassCode(); | |
--EXPECTF-- | |
declare(strict_types=1); | |
class MockBaz extends Exception implements Baz, PHPUnit\Framework\MockObject\MockObject | |
{ | |
use \PHPUnit\Framework\MockObject\Api; | |
use \PHPUnit\Framework\MockObject\Method; | |
public function foo(): string | |
{ | |
$__phpunit_arguments = []; | |
$__phpunit_count = func_num_args(); | |
if ($__phpunit_count > 0) { | |
$__phpunit_arguments_tmp = func_get_args(); | |
for ($__phpunit_i = 0; $__phpunit_i < $__phpunit_count; $__phpunit_i++) { | |
$__phpunit_arguments[] = $__phpunit_arguments_tmp[$__phpunit_i]; | |
} | |
} | |
$__phpunit_result = $this->__phpunit_getInvocationHandler()->invoke( | |
new \PHPUnit\Framework\MockObject\Invocation( | |
'Bar', 'foo', $__phpunit_arguments, ': string', $this, true | |
) | |
); | |
return $__phpunit_result; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment