Ogone\Tests\Subscription\SubscriptionPaymentRequestTest::provideBadParameters PHP Method

provideBadParameters() public method

    public function provideBadParameters()
    {
        return array(array('setAmount', 10.5), array('setAmount', -1), array('setAmount', 150000000000000000), array('setSubscriptionId', 'this is a little more than 50 characters, which is truly the max amount'), array('setSubscriptionId', '$eĀ©ial Ch@r@cters'), array('setSubscriptionAmount', 10.5), array('setSubscriptionAmount', 0), array('setSubscriptionAmount', -1), array('setSubscriptionAmount', 150000000000000000), array('setSubscriptionDescription', 'this is a little more than 100 characters- which is truly the maximum amount of characters one can pass as a parameter to this particular function'), array('setSubscriptionDescription', 'special, characters!'), array('setSubscriptionOrderId', 'this is a little more than 40 characters- which is truly the max amount'), array('setSubscriptionOrderId', 'special, characters!'), array('setSubscriptionStatus', 5), array('setSubscriptionComment', 'this particular string is supposed to be longer than 200 characters- which will require me to type for quite a while longer than the string that needed to exceed 50 chars- which is- in fact- significantly lower than 200'), array('setSubscriptionComment', 'special, characters!'));
    }