* @license PHP License * @package WB * @subpackage unittest */ Testing_FIT_Loader::loadClass( 'Testing_FIT_Fixture' , 'Testing_FIT_Fixture_Column' ); /** * FIT Test * * Base_Param * * @version 0.1.0 * @package WB * @subpackage FIT */ class Base_Param extends Testing_FIT_Fixture_Column { /** * property or class name * * @var string */ public $name = null; /** * property value * * @var string */ public $value = null; /** * set a property * * @return bool */ public function set() { return WBParam::set( $this->name, $this->value ); } /** * receive a property * * Fetch property as named in member variable "name" * * @return string */ public function get() { return WBParam::get( $this->name ); } } ?>