isProductInTheList() 공개 메소드

public isProductInTheList ( string $productName ) : boolean
$productName string
리턴 boolean
예제 #1
0
 /**
  * @Then the product named :productName should be in the items list
  */
 public function theProductShouldBeInTheItemsList($productName)
 {
     Assert::true($this->showPage->isProductInTheList($productName), sprintf('Product %s is not in the item list.', $productName));
 }