12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- declare(strict_types=1);
- /*
- * This file is part of the league/commonmark package.
- *
- * (c) Colin O'Dell <colinodell@gmail.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace League\CommonMark\Tests\Unit\Event;
- use League\CommonMark\Environment\Environment;
- use League\CommonMark\Event\DocumentParsedEvent;
- use League\CommonMark\Extension\CommonMark\CommonMarkCoreExtension;
- use League\CommonMark\Node\Block\Document;
- use League\CommonMark\Parser\MarkdownParser;
- use PHPUnit\Framework\TestCase;
- final class DocumentParsedEventTest extends TestCase
- {
- public function testGetDocument(): void
- {
- $document = new Document();
- $event = new DocumentParsedEvent($document);
- $this->assertSame($document, $event->getDocument());
- }
- public function testEventDispatchedAtCorrectTime(): void
- {
- $wasCalled = false;
- $environment = new Environment();
- $environment->addExtension(new CommonMarkCoreExtension());
- $environment->addEventListener(DocumentParsedEvent::class, static function (DocumentParsedEvent $event) use (&$wasCalled): void {
- $wasCalled = true;
- });
- $parser = new MarkdownParser($environment);
- $parser->parse('hello world');
- $this->assertTrue($wasCalled);
- }
- }
|