mirror of
https://gitlab.com/openlp/website.git
synced 2024-12-22 13:02:50 +00:00
33 lines
821 B
PHP
33 lines
821 B
PHP
<?php
|
|
|
|
namespace Stripe;
|
|
|
|
class BankAccountTest extends TestCase
|
|
{
|
|
public function testVerify()
|
|
{
|
|
self::authorizeFromEnv();
|
|
|
|
$customer = self::createTestCustomer();
|
|
|
|
$bankAccount = $customer->sources->create(array(
|
|
'source' => array(
|
|
'object' => 'bank_account',
|
|
'account_holder_type' => 'individual',
|
|
'account_number' => '000123456789',
|
|
'account_holder_name' => 'John Doe',
|
|
'routing_number' => '110000000',
|
|
'country' => 'US'
|
|
)
|
|
));
|
|
|
|
$this->assertSame($bankAccount->status, 'new');
|
|
|
|
$bankAccount = $bankAccount->verify(array(
|
|
'amounts' => array(32, 45)
|
|
));
|
|
|
|
$this->assertSame($bankAccount->status, 'verified');
|
|
}
|
|
}
|