/**
  * Get the associated PcSplitTest object
  *
  * @param      PropelPDO Optional Connection object.
  * @return     PcSplitTest The associated PcSplitTest object.
  * @throws     PropelException
  */
 public function getPcSplitTest(PropelPDO $con = null)
 {
     if ($this->aPcSplitTest === null && $this->test_id !== null) {
         $this->aPcSplitTest = PcSplitTestPeer::retrieveByPk($this->test_id);
         /* The following can be used additionally to
         		   guarantee the related object contains a reference
         		   to this object.  This level of coupling may, however, be
         		   undesirable since it could result in an only partially populated collection
         		   in the referenced object.
         		   $this->aPcSplitTest->addPcSplitTestResults($this);
         		 */
     }
     return $this->aPcSplitTest;
 }