/**
  * Pre test set up.
  */
 public function setUp()
 {
     $this->criteria = new CreditScoreCriteria();
     $this->reference = new ReferencingApplication();
     $this->decisionDetails = new ReferencingDecisionDetails();
     $this->creditReference = new CreditReference();
     $this->rrpReference = new RentRecoveryPlusReference();
     $this->rrpReference->setParent($this->reference);
     $this->rrpReference->setDecisionDetails($this->decisionDetails);
     $this->decisionDetails->setCreditReference($this->creditReference);
 }