<?php
/**
* File for mock ActionController class
*
* This file has the same name as the file holding the
* {@link ActionController} class. To use the mock ActionController, put
* this file in the PHP include path ahead of the Trax library, so
* that any class which requires active_record.php will load this
* version.
*
* (PHP 5)
*
* @package PHPonTraxTest
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
* @copyright (c) Walter O. Haas 2006
* @version $Id$
* @author Walt Haas <hide@address.com>
*/
/**
* Mock ActionController class for testing
*/
class ActionController {
// Name of object controlled by this controller
public $object_name;
}
// -- set Emacs parameters --
// Local variables:
// tab-width: 4
// c-basic-offset: 4
// c-hanging-comment-ender-p: nil
// indent-tabs-mode: nil
// End:
?>