* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ declare(strict_types=1); namespace League\CommonMark\Tests\Unit\Extension\FrontMatter\Output; use League\CommonMark\Extension\FrontMatter\Output\RenderedContentWithFrontMatter; use League\CommonMark\Node\Block\Document; use PHPUnit\Framework\TestCase; final class RenderedContentWithFrontMatterTest extends TestCase { public function testConstructorAndGetters(): void { $document = new Document(); $output = new RenderedContentWithFrontMatter($document, '

Hello, World!

', ['foo' => 'bar']); $this->assertSame($document, $output->getDocument()); $this->assertSame('

Hello, World!

', $output->getContent()); $this->assertSame(['foo' => 'bar'], $output->getFrontMatter()); } }