Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 4 |
ElementNotFound | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 4 |
__construct($selector, $message = null) | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 4 |
<?php | |
namespace Codeception\Exception; | |
class ElementNotFound extends \PHPUnit_Framework_AssertionFailedError{ | |
public function __construct($selector, $message = null) | |
{ | |
parent::__construct($message . " '$selector' not found on page.\n'"); | |
} | |
} |