В Zend модели добавляются в представление:
//In a controller
public function indexAction() {
//Do some work and get a model
$this->view->model = $model;
}
Мы можем легко проверить, что "модель" существует в представлении (я использую для этого простейшее):
//In a unit test
public function testModelIsSetInView() {
//Call the controllers index action
$this->assertTrue(isset($this->controller->view->model));
}
Однако проверка «значения» также не работает:
//In a unit test
public function testModelValue() {
//Call the controllers index action
//Both of these return null, though I'd like to access them!
$this->assertNull($this->controller->view->model);
$this->assertNull($this->controller->view->__get('model'));
}
Как получить (или хотя бы проверить), что контроллер установил допустимую модель?