Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
42 | public function testView() |
||
43 | { |
||
44 | /** @var TestProductWishList $wishList */ |
||
45 | $wishList = $this->objFromFixture(TestProductWishList::class, 'one'); |
||
46 | /** @var TestWishListPage $wishListPage */ |
||
47 | $wishListPage = $this->objFromFixture(TestWishListPage::class, 'one'); |
||
48 | |||
49 | $response = $this->get(Controller::join_links( |
||
50 | $wishListPage->Link(), |
||
51 | 'view', |
||
52 | $wishList->URLSegment |
||
|
|||
53 | )); |
||
54 | $this->assertEquals(200, $response->getStatusCode()); |
||
55 | } |
||
58 |