class StatusCodeTest in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/behat/mink/driver-testsuite/tests/Basic/StatusCodeTest.php \Behat\Mink\Tests\Driver\Basic\StatusCodeTest
Hierarchy
- class \Behat\Mink\Tests\Driver\TestCase extends \Behat\Mink\Tests\Driver\PHPUnit_Framework_TestCase
- class \Behat\Mink\Tests\Driver\Basic\StatusCodeTest
Expanded class hierarchy of StatusCodeTest
File
- vendor/
behat/ mink/ driver-testsuite/ tests/ Basic/ StatusCodeTest.php, line 7
Namespace
Behat\Mink\Tests\Driver\BasicView source
class StatusCodeTest extends TestCase {
public function testStatuses() {
$this
->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()
->getContent());
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
StatusCodeTest:: |
public | function | ||
TestCase:: |
private static | property | ||
TestCase:: |
private static | property | Mink session manager. | |
TestCase:: |
protected | function | ||
TestCase:: |
protected | function | Creates a new driver instance. | |
TestCase:: |
protected | function | ||
TestCase:: |
protected | function | Returns assert session. | |
TestCase:: |
private static | function | ||
TestCase:: |
protected | function | Returns session. | |
TestCase:: |
protected | function | Map remote file path. | |
TestCase:: |
protected | function | ||
TestCase:: |
protected | function | ||
TestCase:: |
protected | function | Waits for a condition to be true, considering than it is successful for drivers not supporting wait(). | |
TestCase:: |
public static | function | Initializes the test case. | |
TestCase:: |
protected | function |