Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support shouldNotReceive #26

Merged
merged 1 commit into from
Feb 5, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions stubs/MockInterface.stub
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ interface MockInterface
*/
public function shouldReceive(...$methodNames);

/**
* @param string|array<string, mixed> ...$methodNames
* @return Expectation
*/
public function shouldNotReceive(...$methodNames);

/**
* @return static
*/
Expand All @@ -27,6 +33,12 @@ interface LegacyMockInterface
*/
public function shouldReceive(...$methodNames);

/**
* @param string|array<string, mixed> ...$methodNames
* @return Expectation
*/
public function shouldNotReceive(...$methodNames);

/**
* @return static
*/
Expand Down
19 changes: 18 additions & 1 deletion tests/Mockery/MockeryBarTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,18 @@

namespace PHPStan\Mockery;

class MockeryBarTest extends \PHPUnit\Framework\TestCase
use Mockery\Adapter\Phpunit\MockeryTestCase;

class MockeryBarTest extends MockeryTestCase
{

/** @var \Mockery\MockInterface|Foo */
private $fooMock;

protected function setUp(): void
{
parent::setUp();

$this->fooMock = \Mockery::mock(Foo::class);
}

Expand All @@ -34,4 +38,17 @@ public function testExpectationMethodsAreCalled(): void
self::assertSame('foo', $bar->doFoo());
}

public function testShouldNotReceiveAndHaveReceived(): void
{
$this->fooMock->shouldNotReceive('doFoo')->andReturn('bar');
$this->fooMock->shouldNotHaveReceived('doFoo');
}

public function testShouldReceiveAndHaveReceived(): void
{
$this->fooMock->shouldReceive('doFoo')->andReturn('bar');
self::assertSame('bar', $this->fooMock->doFoo());
$this->fooMock->shouldHaveReceived('doFoo');
}

}