getSession()->visit($this->pathTo('/index.html')); $this->assertEquals(200, $this->getSession()->getStatusCode()); $this->assertEquals($this->pathTo('/index.html'), $this->getSession()->getCurrentUrl()); $this->getSession()->visit($this->pathTo('/404.php')); $this->assertEquals($this->pathTo('/404.php'), $this->getSession()->getCurrentUrl()); $this->assertEquals(404, $this->getSession()->getStatusCode()); $this->assertEquals('Sorry, page not found', $this->getSession()->getPage()->getText()); } }