| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 25 | public function myCartTotalShouldBe($total) |
||
| 26 | { |
||
| 27 | /** @var CartSummaryPage $cartSummaryPage */ |
||
| 28 | $cartSummaryPage = $this->getPage('Cart\CartSummaryPage'); |
||
| 29 | $cartSummaryPage->open(); |
||
| 30 | |||
| 31 | $this->assertSession()->elementTextContains('css', '#cart-summary', 'Grand total: '.$total); |
||
| 32 | } |
||
| 33 | |||
| 46 |