/branches/v1.6.2/Tests/runall.php

# · PHP · 76 lines · 43 code · 4 blank · 29 comment · 0 complexity · 06499ba15631e47d6196f49291980832 MD5 · raw file

  1. <?php
  2. /**
  3. * PHPExcel
  4. *
  5. * Copyright (C) 2006 - 2008 PHPExcel
  6. *
  7. * This library is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * This library is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with this library; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. *
  21. * @category PHPExcel
  22. * @package PHPExcel
  23. * @copyright Copyright (c) 2006 - 2008 PHPExcel (http://www.codeplex.com/PHPExcel)
  24. * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
  25. * @version ##VERSION##, ##DATE##
  26. */
  27. /** Error reporting */
  28. error_reporting(E_ALL);
  29. // List of tests
  30. $aTests = array(
  31. '01simple.php'
  32. , '02types.php'
  33. , '03formulas.php'
  34. , '04printing.php'
  35. , '05featuredemo.php'
  36. , '06largescale.php'
  37. , '07reader.php'
  38. , '08conditionalformatting.php'
  39. , '09pagebreaks.php'
  40. , '10autofilter.php'
  41. , '11documentsecurity.php'
  42. , '12serializedfileformat.php'
  43. , '13calculation.php'
  44. , '14excel5.php'
  45. , '15datavalidation.php'
  46. , '16csv.php'
  47. , '17html.php'
  48. , '18extendedcalculation.php'
  49. , '19namedrange.php'
  50. , '20readexcel5.php'
  51. , '21pdf.php'
  52. , '22heavilyformatted.php'
  53. , '23sharedstyles.php'
  54. );
  55. // First, clear all results
  56. foreach ($aTests as $sTest) {
  57. @unlink( str_replace('.php', '.xls', $sTest) );
  58. @unlink( str_replace('.php', '.xlsx', $sTest) );
  59. @unlink( str_replace('.php', '.phpxl', $sTest) );
  60. @unlink( str_replace('.php', '.csv', $sTest) );
  61. @unlink( str_replace('.php', '.htm', $sTest) );
  62. @unlink( str_replace('.php', '.pdf', $sTest) );
  63. }
  64. // Run all tests
  65. foreach ($aTests as $sTest) {
  66. echo '============== TEST ==============' . "\r\n";
  67. echo 'Test name: ' . $sTest . "\r\n";
  68. echo "\r\n";
  69. echo shell_exec('php ' . $sTest);
  70. echo "\r\n";
  71. echo "\r\n";
  72. }