File_Bittorrent
[ class tree: File_Bittorrent ] [ index: File_Bittorrent ] [ all elements ]

Source for file AllTests.php

Documentation is available at AllTests.php

  1. <?php
  2.  
  3. // +----------------------------------------------------------------------+
  4. // | Decode and Encode data in Bittorrent format                          |
  5. // +----------------------------------------------------------------------+
  6. // | Copyright (C) 2004-2006 Markus Tacker <m@tacker.org>                 |
  7. // +----------------------------------------------------------------------+
  8. // | This library is free software; you can redistribute it and/or        |
  9. // | modify it under the terms of the GNU Lesser General Public           |
  10. // | License as published by the Free Software Foundation; either         |
  11. // | version 2.1 of the License, or (at your option) any later version.   |
  12. // |                                                                      |
  13. // | This library is distributed in the hope that it will be useful,      |
  14. // | but WITHOUT ANY WARRANTY; without even the implied warranty of       |
  15. // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU    |
  16. // | Lesser General Public License for more details.                      |
  17. // |                                                                      |
  18. // | You should have received a copy of the GNU Lesser General Public     |
  19. // | License along with this library; if not, write to the                |
  20. // | Free Software Foundation, Inc.                                       |
  21. // | 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA               |
  22. // +----------------------------------------------------------------------+
  23.  
  24.     
  25.     /**
  26.     * Test for File_Bittorrent
  27.     *
  28.     * @package File_Bittorrent
  29.     * @subpackage Test
  30.     * @category File
  31.     * @author Markus Tacker <m@tacker.org>
  32.     * @version $Id: AllTests.php 72 2007-03-13 14:53:28Z m $
  33.     */
  34.  
  35.     error_reporting(E_ALL);
  36.     ini_set('display_errors'1);
  37.  
  38.     require_once 'Tests/FileBittorrent.php';
  39.     require_once 'Tests/Bug7406.php';
  40.     require_once 'Tests/Bug8085.php';
  41.  
  42.     /**
  43.     * Test for File_Bittorrent
  44.     *
  45.     * @package File_Bittorrent
  46.     * @subpackage Test
  47.     * @category File
  48.     * @author Markus Tacker <m@tacker.org>
  49.     * @version $Id: AllTests.php 72 2007-03-13 14:53:28Z m $
  50.     */
  51.     class Tests_AllTests {
  52.  
  53.         public static function suite({
  54.             $suite = new PHPUnit_Framework_TestSuite();
  55.  
  56.             $suite->addTestSuite('Tests_FileBittorrent');
  57.             $suite->addTestSuite('Tests_Bug7406');
  58.             $suite->addTestSuite('Tests_Bug8085');
  59.  
  60.             return $suite;
  61.         }
  62.     }
  63.  
  64. ?>

Documentation generated on Tue, 13 Mar 2007 10:00:08 -0500 by phpDocumentor 1.3.0. PEAR Logo Copyright © PHP Group 2004.