예제 #1
0
파일: InputFormTest.php 프로젝트: srccn/f3
 /**
  * @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");
 }