/** * Test if title can be set * * @test * @return void */ public function titleCanBeSetTest() { $title = 'a title'; $this->fixture->setTitle($title); $this->assertEquals($title, $this->fixture->getTitle()); }