We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05e8274 commit e812561Copy full SHA for e812561
tests/Omnipay/TestCase.php
@@ -123,6 +123,20 @@ public function getValidCard()
123
'expiryMonth' => rand(1, 12),
124
'expiryYear' => date('Y') + rand(1, 5),
125
'cvv' => rand(100, 999),
126
+ 'billingAddress1' => '123 Billing St',
127
+ 'billingAddress2' => 'Billsville',
128
+ 'billingCity' => 'Billstown',
129
+ 'billingPostcode' => '12345',
130
+ 'billingState' => 'CA',
131
+ 'billingCountry' => 'US',
132
+ 'billingPhone' => '(555) 123-4567',
133
+ 'shippingAddress1' => '123 Shipping St',
134
+ 'shippingAddress2' => 'Shipsville',
135
+ 'shippingCity' => 'Shipstown',
136
+ 'shippingPostcode' => '54321',
137
+ 'shippingState' => 'NY',
138
+ 'shippingCountry' => 'US',
139
+ 'shippingPhone' => '(555) 987-6543',
140
);
141
}
142
0 commit comments