Esempio n. 1
0
 /**
  * @test
  */
 public function testSetInputForm()
 {
     $testArray = array("zip" => "001122", "loanAmount" => "12345");
     $im = new InputForm();
     $im->setInputForm($testArray);
     $this->assertEquals($im->zip, "001122");
     $this->assertEquals($im->loanAmount, "12345");
 }