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 b8346af commit cb7ffd0Copy full SHA for cb7ffd0
tests/PhpWord/PhpWordTest.php
@@ -225,4 +225,13 @@ public function testSortSections()
225
$this->assertEquals(2, $phpWord->getSection(0)->countElements());
226
$this->assertEquals(1, $phpWord->getSection(1)->countElements());
227
}
228
+
229
+ /**
230
+ * @covers \PhpOffice\PhpWord\PhpWord::getSettings
231
+ */
232
+ public function testGetSettings()
233
+ {
234
+ $phpWord = new PhpWord();
235
+ $this->assertInstanceOf('PhpOffice\\PhpWord\\Metadata\\Settings', $phpWord->getSettings());
236
+ }
237
0 commit comments