016.phpt 410 B

123456789101112131415161718192021
  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("16.xlsx")
  10. ->mergeCells('A1:C1', 'Merge cells')
  11. ->output();
  12. var_dump($filePath);
  13. ?>
  14. --CLEAN--
  15. <?php
  16. @unlink(__DIR__ . '/16.xlsx');
  17. ?>
  18. --EXPECT--
  19. string(15) "./tests/16.xlsx"