19 declare(strict_types=1);
32 protected function setUp(): void
34 $markup = $this->createMock(
Data\Text\Markup::class);
35 $language = $this->createMock(ilLanguage::class);
36 $data_factory =
new Data\Factory();
44 [Structure::BOLD, Structure::ITALIC]
51 [
"This text has **bold** and _italic_ content",
true],
52 [
"> Quote block is not allowed",
false],
53 [
"Paragraphs\n\nare not allowed.",
false],
54 [
"Line breaks\\\nare not allowed.",
false],
55 [
"Also these \nline breaks are not allowed.",
false]
64 $supported_structure = $this->word_only_markdown_shape->getSupportedStructure();
70 $this->assertEquals($exptected, $supported_structure);
78 $this->assertEquals($compliance, $this->word_only_markdown_shape->isRawStringCompliant($markdown_string));
static constructDataProvider()
static stringComplianceDataProvider()
Interface Observer Contains several chained tasks and infos about them.
testGetSupportedStructure(Structure $dp_bold, Structure $dp_italic)
constructDataProvider
WordOnlyMarkdown $word_only_markdown_shape
testIsRawStringCompliant(string $markdown_string, bool $compliance)
stringComplianceDataProvider