%PDF- %PDF-
Direktori : /var/www/html/o91-api/vendor/mockery/mockery/tests/Mockery/ |
Current File : /var/www/html/o91-api/vendor/mockery/mockery/tests/Mockery/MockClassWithMethodOverloadingTest.php |
<?php namespace test\Mockery; use Mockery\Adapter\Phpunit\MockeryTestCase; class MockClassWithMethodOverloadingTest extends MockeryTestCase { public function testCreateMockForClassWithMethodOverloading() { $mock = mock('test\Mockery\TestWithMethodOverloading') ->makePartial(); $this->assertInstanceOf('test\Mockery\TestWithMethodOverloading', $mock); $this->expectException(\BadMethodCallException::class); // TestWithMethodOverloading::__call wouldn't be used. See Gotchas!. $mock->randomMethod(); } public function testCreateMockForClassWithMethodOverloadingWithExistingMethod() { $mock = mock('test\Mockery\TestWithMethodOverloading') ->makePartial(); $this->assertInstanceOf('test\Mockery\TestWithMethodOverloading', $mock); $this->assertSame(1, $mock->thisIsRealMethod()); } } class TestWithMethodOverloading { public function __call($name, $arguments) { return 1; } public function thisIsRealMethod() { return 1; } }