23 lines
472 B
Plaintext
23 lines
472 B
Plaintext
|
--TEST--
|
||
|
Check for vtiful presence
|
||
|
--SKIPIF--
|
||
|
<?php if (!extension_loaded("xlswriter")) print "skip"; ?>
|
||
|
--FILE--
|
||
|
<?php
|
||
|
$config = ['path' => './tests'];
|
||
|
$excel = new \Vtiful\Kernel\Excel($config);
|
||
|
|
||
|
$filePath = $excel->fileName('insert_comment.xlsx')
|
||
|
->header(['Item', 'Cost'])
|
||
|
->insertComment(0,1,'comment')
|
||
|
->output();
|
||
|
|
||
|
var_dump($filePath);
|
||
|
?>
|
||
|
--CLEAN--
|
||
|
<?php
|
||
|
@unlink(__DIR__ . '/insert_comment.xlsx');
|
||
|
?>
|
||
|
--EXPECT--
|
||
|
string(27) "./tests/insert_comment.xlsx"
|