Example #1
0
 /**
  * Testing accessing the attached BO via getBO().
  *
  * @since 1.0
  */
 public function testGetBO()
 {
     $article = new Article();
     $article->set('title', 'Test Article');
     $this->view->setBO($article);
     $this->assertEquals('Test Article', $this->view->getBO()->get('title'), 'testing accessing the attached BO via getBO()');
 }