| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | public function assertPageHasContent(StaticContent $staticContent) |
||
| 23 | { |
||
| 24 | $this->verify(['name' => $staticContent->getName()]); |
||
| 25 | |||
| 26 | Assert::contains($this->getSession()->getPage()->getHtml(), $staticContent->getTitle()); |
||
| 27 | Assert::contains($this->getSession()->getPage()->getHtml(), $staticContent->getBody()); |
||
| 28 | } |
||
| 29 | |||
| 38 |