public function ElementHtmlExceptionTest::testExceptionToString in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/behat/mink/tests/Exception/ElementHtmlExceptionTest.php \Behat\Mink\Tests\Exception\ElementHtmlExceptionTest::testExceptionToString()
File
- vendor/
behat/ mink/ tests/ Exception/ ElementHtmlExceptionTest.php, line 9
Class
Namespace
Behat\Mink\Tests\ExceptionCode
public function testExceptionToString() {
$driver = $this
->getMock('Behat\\Mink\\Driver\\DriverInterface');
$element = $this
->getElementMock();
$driver
->expects($this
->any())
->method('getStatusCode')
->will($this
->returnValue(200));
$driver
->expects($this
->any())
->method('getCurrentUrl')
->will($this
->returnValue('http://localhost/test'));
$element
->expects($this
->any())
->method('getOuterHtml')
->will($this
->returnValue("<div>\n <h1>Hello world</h1>\n <p>Test</p>\n</div>"));
$expected = <<<'TXT'
Html error
+--[ HTTP/1.1 200 | http://localhost/test | %s ]
|
| <div>
| <h1>Hello world</h1>
| <p>Test</p>
| </div>
|
TXT;
$expected = sprintf($expected . ' ', get_class($driver));
$exception = new ElementHtmlException('Html error', $driver, $element);
$this
->assertEquals($expected, $exception
->__toString());
}