Fix for TestCase not listed

  1. <?php
  2. // $Id$
  3.  
  4. /**
  5.  * @file
  6.  * Tests for update.inc.
  7.  */
  8.  
  9. /**
  10.  * Unit tests for the module API.
  11.  */
  12. class UpdateIncTestCase extends DrupalWebTestCase {
  13.   public static function getInfo() {
  14.     return array(
  15.       'name' => 'Update',
  16.       'description' => 'Test low-level update functions.',
  17.       'group' => 'System',
  18.     );
  19.   }
  20.  
  21.   /**
  22.    * The basic functionality of module_list().
  23.    */
  24.   function testUpdateGraph() {
  25.     // Taken from example http://drupal.org/node/211182#comment-2070818
  26.     $this->assertTrue(TRUE, "Ok", "algorithme");
  27.   }
  28. }

Submit Fix

Any tags you'd like to associate with your code, delimitered by commas (example: Views, CCK, Module, etc).
Select the syntax highlighting mode to use.