示例#1
0
 /**
  * Declares an association between this object and a Tests object.
  *
  * @param      Tests $v
  * @return     Tests The current object (for fluent API support)
  * @throws     PropelException
  */
 public function setTestsRelatedByTestsId(Tests $v = null)
 {
     if ($v === null) {
         $this->setTestsId(NULL);
     } else {
         $this->setTestsId($v->getId());
     }
     $this->aTestsRelatedByTestsId = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the Tests object, it will not be re-added.
     if ($v !== null) {
         $v->addTestsRelatedByTestsId($this);
     }
     return $this;
 }