getItemSubtotal() 공개 메소드

public getItemSubtotal ( string $itemName ) : string
$itemName string
리턴 string
예제 #1
0
 /**
  * @Then /^(its) subtotal should be ([^"]+)$/
  */
 public function itemSubtotalShouldBe($itemName, $subtotal)
 {
     $itemSubtotalOnPage = $this->showPage->getItemSubtotal($itemName);
     Assert::eq($itemSubtotalOnPage, $subtotal, 'Item subtotal is %s, but should be %s.');
 }