2024-05-07 12:17:25 +02:00
|
|
|
<?php
|
2024-05-17 12:24:19 +00:00
|
|
|
|
2024-05-07 12:17:25 +02:00
|
|
|
/**
|
2024-05-17 12:24:19 +00:00
|
|
|
* Mockery (https://docs.mockery.io/)
|
2024-05-07 12:17:25 +02:00
|
|
|
*
|
2024-05-17 12:24:19 +00:00
|
|
|
* @copyright https://github.com/mockery/mockery/blob/HEAD/COPYRIGHT.md
|
|
|
|
|
* @license https://github.com/mockery/mockery/blob/HEAD/LICENSE BSD 3-Clause License
|
|
|
|
|
* @link https://github.com/mockery/mockery for the canonical source repository
|
2024-05-07 12:17:25 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
|
|
namespace Mockery\Adapter\Phpunit;
|
|
|
|
|
|
|
|
|
|
trait MockeryPHPUnitIntegrationAssertPostConditions
|
|
|
|
|
{
|
|
|
|
|
protected function assertPostConditions(): void
|
|
|
|
|
{
|
|
|
|
|
$this->mockeryAssertPostConditions();
|
|
|
|
|
}
|
|
|
|
|
}
|