003.phpt 501 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. $fileFd = $excel->fileName('tutorial01.xlsx');
  10. var_dump($fileFd);
  11. ?>
  12. --EXPECT--
  13. object(Vtiful\Kernel\Excel)#1 (2) {
  14. ["config":"Vtiful\Kernel\Excel":private]=>
  15. array(1) {
  16. ["path"]=>
  17. string(7) "./tests"
  18. }
  19. ["fileName":"Vtiful\Kernel\Excel":private]=>
  20. string(23) "./tests/tutorial01.xlsx"
  21. }