--TEST-- Check for vtiful presence --SKIPIF-- --FILE-- './tests']; $excel = new \Vtiful\Kernel\Excel($config); $excel->setPortrait(); } catch (\Exception $exception) { var_dump($exception->getCode()); var_dump($exception->getMessage()); } $config = ['path' => './tests']; $excel = new \Vtiful\Kernel\Excel($config); $excel->fileName('printed_portrait.xlsx', 'sheet1') ->setPortrait() ->output(); var_dump($excel); $config = ['path' => './tests']; $excel = new \Vtiful\Kernel\Excel($config); $excel->fileName('printed_landscape.xlsx', 'sheet1') ->setLandscape() ->output(); var_dump($excel); $config = ['path' => './tests']; $excel = new \Vtiful\Kernel\Excel($config); $excel->fileName('printed_scale.xlsx', 'sheet1') ->setPrintScale(180) ->output(); var_dump($excel); ?> --CLEAN-- --EXPECT-- int(130) string(51) "Please create a file first, use the filename method" object(Vtiful\Kernel\Excel)#3 (3) { ["config":"Vtiful\Kernel\Excel":private]=> array(1) { ["path"]=> string(7) "./tests" } ["fileName":"Vtiful\Kernel\Excel":private]=> string(29) "./tests/printed_portrait.xlsx" ["read_row_type":"Vtiful\Kernel\Excel":private]=> NULL } object(Vtiful\Kernel\Excel)#1 (3) { ["config":"Vtiful\Kernel\Excel":private]=> array(1) { ["path"]=> string(7) "./tests" } ["fileName":"Vtiful\Kernel\Excel":private]=> string(30) "./tests/printed_landscape.xlsx" ["read_row_type":"Vtiful\Kernel\Excel":private]=> NULL } object(Vtiful\Kernel\Excel)#3 (3) { ["config":"Vtiful\Kernel\Excel":private]=> array(1) { ["path"]=> string(7) "./tests" } ["fileName":"Vtiful\Kernel\Excel":private]=> string(26) "./tests/printed_scale.xlsx" ["read_row_type":"Vtiful\Kernel\Excel":private]=> NULL }