Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
32 | public function testView() |
||
33 | { |
||
34 | $wishList = $this->objFromFixture(TestProductWishList::class, 'one'); |
||
35 | /** @var TestWishListPage $wishListPage */ |
||
36 | $wishListPage = $this->objFromFixture(TestWishListPage::class, 'one'); |
||
37 | $response = $this->get(Controller::join_links( |
||
38 | $wishListPage->Link(), |
||
39 | 'view', |
||
40 | $wishList->ID |
||
41 | )); |
||
42 | $this->assertEquals(200, $response->getStatusCode()); |
||
43 | } |
||
46 |