/**
  * Set up a basic object fixture.
  *
  * This provides an Object initialized with the main constants defined
  * for this class. Use this as a fixture to avoid repetition.
  *
  * @return Object An initialized object.
  */
 public function basicObjectFixture()
 {
     $o = new Object(self::FNAME);
     $o->setContent(self::FCONTENT, self::FTYPE);
     return $o;
 }