Sylius\Behat\Context\Ui\Admin\ManagingPaymentMethodsContext::theLastPaymentMethodOnTheListShouldHave PHP Method

theLastPaymentMethodOnTheListShouldHave() public method

public theLastPaymentMethodOnTheListShouldHave ( $field, $value )
    public function theLastPaymentMethodOnTheListShouldHave($field, $value)
    {
        $fields = $this->indexPage->getColumnFields($field);
        $actualValue = end($fields);
        Assert::same($actualValue, $value, sprintf('Expected last payment method\'s %s to be "%s", but it is "%s".', $field, $value, $actualValue));
    }