| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- declare(strict_types=1);
- /*
- * This file is part of the league/commonmark package.
- *
- * (c) Colin O'Dell <colinodell@gmail.com>
- *
- * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js)
- * - (c) John MacFarlane
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace League\CommonMark\Tests\Unit\Renderer\Inline;
- use League\CommonMark\Exception\InvalidArgumentException;
- use League\CommonMark\Node\Inline\AbstractInline;
- use League\CommonMark\Node\Inline\Text;
- use League\CommonMark\Renderer\Inline\TextRenderer;
- use League\CommonMark\Tests\Unit\Renderer\FakeChildNodeRenderer;
- use PHPUnit\Framework\TestCase;
- final class TextRendererTest extends TestCase
- {
- private TextRenderer $renderer;
- protected function setUp(): void
- {
- $this->renderer = new TextRenderer();
- }
- public function testRender(): void
- {
- $inline = new Text('foo bar');
- $fakeRenderer = new FakeChildNodeRenderer();
- $result = $this->renderer->render($inline, $fakeRenderer);
- $this->assertIsString($result);
- $this->assertStringContainsString('foo bar', $result);
- }
- public function testRenderWithInvalidType(): void
- {
- $this->expectException(InvalidArgumentException::class);
- $inline = $this->getMockForAbstractClass(AbstractInline::class);
- $fakeRenderer = new FakeChildNodeRenderer();
- $this->renderer->render($inline, $fakeRenderer);
- }
- }
|