Example #1
0
 /**
  * Run test getCategoryId method
  *
  * @return int
  */
 public function testGetCategoryId()
 {
     $this->requestMock->expects($this->once())->method('getParam')->with('id')->will($this->returnValue(789));
     $this->assertEquals(789, $this->form->getCategoryId());
 }