009.phpt 432 B

123456789101112131415
  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. $handle = $excel->fileName('tutorial01.xlsx')
  10. ->getHandle();
  11. $underlineStyle = \Vtiful\Kernel\Format::underline($handle, \Vtiful\Kernel\Format::UNDERLINE_SINGLE);
  12. var_dump($underlineStyle);
  13. ?>
  14. --EXPECT--
  15. resource(5) of type (xlsx)