show_comment.phpt 486 B

1234567891011121314151617181920212223
  1. --TEST--
  2. Check for vtiful presence
  3. --SKIPIF--
  4. <?php if (!extension_loaded("xlswriter")) print "skip"; ?>
  5. --FILE--
  6. <?php
  7. $config = ['path' => './tests'];
  8. $excel = new \Vtiful\Kernel\Excel($config);
  9. $filePath = $excel->fileName('show_comment.xlsx')
  10. ->header(['Item', 'Cost'])
  11. ->insertComment(0,1,'comment')
  12. ->showComment()
  13. ->output();
  14. var_dump($filePath);
  15. ?>
  16. --CLEAN--
  17. <?php
  18. @unlink(__DIR__ . '/show_comment.xlsx');
  19. ?>
  20. --EXPECT--
  21. string(25) "./tests/show_comment.xlsx"