/**
  *    Paints the start of a test method.
  *    @param string $test_name   Name of test that is starting.
  *    @access public
  */
 function paintMethodStart($test_name)
 {
     Parent::paintMethodStart($test_name);
     echo "add_method('{$test_name}');\n";
 }