mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-07 10:08:27 +01:00
14 lines
252 B
PHP
14 lines
252 B
PHP
<?php
|
|
|
|
namespace Stripe;
|
|
|
|
class BalanceTransactionTest extends TestCase
|
|
{
|
|
public function testList()
|
|
{
|
|
self::authorizeFromEnv();
|
|
$d = BalanceTransaction::all();
|
|
$this->assertSame($d->url, '/v1/balance/history');
|
|
}
|
|
}
|