Example #1
0
 public function testBookMethodShortcut()
 {
     $app = new Application();
     $app['publishing.book.config'] = array('book' => array('title' => 'The title of the book'));
     $this->assertEquals('The title of the book', $app->book('title'));
     $newBookTitle = 'The book title set via the method shortcut';
     $app->book('title', $newBookTitle);
     $this->assertEquals($newBookTitle, $app->book('title'));
 }