mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-11 03:51:25 +01:00
17 lines
308 B
PHP
17 lines
308 B
PHP
<?php
|
|
|
|
namespace Stripe;
|
|
|
|
class BalanceTest extends TestCase
|
|
{
|
|
public function testIsRetrievable()
|
|
{
|
|
$this->expectsRequest(
|
|
'get',
|
|
'/v1/balance'
|
|
);
|
|
$resource = Balance::retrieve();
|
|
$this->assertInstanceOf("Stripe\\Balance", $resource);
|
|
}
|
|
}
|