1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
<?php
namespace test\Mockery\Adapter\Phpunit;
use Mockery as m;
use Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration;
use Mockery\Adapter\Phpunit\MockeryTestCase;
use Mockery\Exception\BadMethodCallException;
use PHPUnit\Framework\Attributes\Test;
class BaseClassStub
{
use MockeryPHPUnitIntegration;
public function finish()
{
$this->checkMockeryExceptions();
}
public function markAsRisky()
{
}
}
class MockeryPHPUnitIntegrationTest extends MockeryTestCase
{
#[Test]
public function it_marks_a_passing_test_as_risky_if_we_threw_exceptions()
{
$mock = mock();
try {
$mock->foobar();
} catch (\Exception $e) {
// exception swallowed...
}
$test = spy(BaseClassStub::class)->makePartial();
$test->finish();
$test->shouldHaveReceived()->markAsRisky();
}
#[Test]
public function the_user_can_manually_dismiss_an_exception_to_avoid_the_risky_test()
{
$mock = mock();
try {
$mock->foobar();
} catch (BadMethodCallException $e) {
$e->dismiss();
}
$test = spy(BaseClassStub::class)->makePartial();
$test->finish();
$test->shouldNotHaveReceived()->markAsRisky();
}
}
|