home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Servidores / xampp-win32-1.6.7-installer.exe / phpMyAdmin / test / FailTest.php < prev    next >
Encoding:
PHP Script  |  2008-06-23  |  369 b   |  22 lines

  1. <?php
  2. /* vim: expandtab sw=4 ts=4 sts=4: */
  3. /**
  4.  * tests for PMA_get_real_size()
  5.  *
  6.  * @version $Id: FailTest.php 10146 2007-03-20 14:16:18Z cybot_tm $
  7.  * @package phpMyAdmin-test
  8.  */
  9.  
  10. /**
  11.  *
  12.  */
  13. require_once 'PHPUnit/Framework.php';
  14.  
  15. class FailTest extends PHPUnit_Framework_TestCase
  16. {
  17.     public function testFail()
  18.     {
  19.         $this->assertEquals(0, 1);
  20.     }
  21. }
  22. ?>