We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c76ab02 commit 993eb58Copy full SHA for 993eb58
tests/PhpWordTests/Writer/RTF/StyleTest.php
@@ -70,20 +70,6 @@ public function testBorderWithNonRegisteredColors(): void
70
self::assertEquals($expected, $content);
71
}
72
73
- public function testIndentation(): void
74
- {
75
- $indentation = new \PhpOffice\PhpWord\Style\Indentation();
76
- $indentation->setLeft(1);
77
- $indentation->setRight(2);
78
- $indentation->setFirstLine(3);
79
-
80
- $indentWriter = new RTF\Style\Indentation($indentation);
81
- $indentWriter->setParentWriter(new RTF());
82
- $result = $indentWriter->write();
83
84
- Assert::assertEquals('\fi3\li1\ri2 ', $result);
85
- }
86
87
public function testRightTab(): void
88
{
89
$tabRight = new \PhpOffice\PhpWord\Style\Tab();
0 commit comments