PptTable 574 B

123456789101112131415161718
  1. <?php
  2. namespace PhpPresentation\Tests\Writer\PowerPoint2007;
  3. use PhpOffice\PhpPresentation\Tests\PhpPresentationTestCase;
  4. class PptTablePropsTest extends PhpPresentationTestCase
  5. {
  6. protected $writerName = 'PowerPoint2007';
  7. public function testRender()
  8. {
  9. $this->assertZipFileExists('ppt/tableStyles.xml');
  10. $element = '/a:tblStyleLst';
  11. $this->assertZipXmlElementExists('ppt/tableStyles.xml', $element);
  12. $this->assertZipXmlAttributeEquals('ppt/tableStyles.xml', $element, 'def', '{5C22544A-7EE6-4342-B048-85BDC9FD1C3A}');
  13. }
  14. }