Sylius\Behat\Page\Admin\PaymentMethod\UpdatePageInterface::isPaymentMethodEnabled PHP Method

isPaymentMethodEnabled() public method

public isPaymentMethodEnabled ( ) : boolean
return boolean
    public function isPaymentMethodEnabled();

Usage Example

 /**
  * @Then this payment method should be disabled
  */
 public function thisPaymentMethodShouldBeDisabled()
 {
     Assert::false($this->updatePage->isPaymentMethodEnabled(), 'Payment method should be disabled');
 }