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
|
<?php
declare(strict_types=1);
namespace Doctrine\Tests\Inflector;
use Doctrine\Inflector\CachedWordInflector;
use Doctrine\Inflector\WordInflector;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
class CachedWordInflectorTest extends TestCase
{
/** @var WordInflector&MockObject */
private $wordInflector;
/** @var CachedWordInflector */
private $cachedWordInflector;
public function testInflect(): void
{
$this->wordInflector->expects(self::once())
->method('inflect')
->with('in')
->willReturn('out');
self::assertSame('out', $this->cachedWordInflector->inflect('in'));
self::assertSame('out', $this->cachedWordInflector->inflect('in'));
}
protected function setUp(): void
{
$this->wordInflector = $this->createMock(WordInflector::class);
$this->cachedWordInflector = new CachedWordInflector(
$this->wordInflector
);
}
}
|