Files
kulakpos_web/vendor/fedapay/fedapay-php/tests/BalanceTest.php
eko54r b5e3a778ce
All checks were successful
Build, Push and Deploy / build-and-push (push) Successful in 3m3s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 16s
Build, Push and Deploy / deploy-staging (push) Successful in 32s
Build, Push and Deploy / deploy-production (push) Has been skipped
Build, Push and Deploy / cleanup (push) Successful in 1s
allow vendord
2026-03-30 14:54:57 +07:00

67 lines
2.0 KiB
PHP

<?php
namespace Tests;
class BalanceTest extends BaseTestCase
{
/**
* Should return FedaPay\Balance
*/
public function testShouldReturnCurrencies()
{
$body = [
'v1/balances' => [[
'id' => 1,
'klass' => 'v1/balance',
'currency_id' => 1,
'account_id' => 1,
'amount' => 952,
'mode' => 'mtn',
'created_at' => '2018-03-12T09:09:03.969Z',
'updated_at' => '2018-03-12T09:09:03.969Z'
]]
];
$this->mockRequest('get', '/v1/balances', [], $body);
$object = \FedaPay\Balance::all();
$this->assertInstanceOf(\FedaPay\FedaPayObject::class, $object);
$this->assertTrue(is_array($object->balances));
$this->assertInstanceOf(\FedaPay\Balance::class, $object->balances[0]);
$this->assertEquals(1, $object->balances[0]->currency_id);
$this->assertEquals(1, $object->balances[0]->account_id);
$this->assertEquals(952, $object->balances[0]->amount);
$this->assertEquals('mtn', $object->balances[0]->mode);
}
/**
* Should retrieve a Customer
*/
public function testShouldRetrievedABalance()
{
$body = [
'v1/balance' => [
'id' => 1,
'klass' => 'v1/balance',
'currency_id' => 1,
'account_id' => 1,
'amount' => 952,
'mode' => 'mtn',
'created_at' => '2018-03-12T09:09:03.969Z',
'updated_at' => '2018-03-12T09:09:03.969Z'
]
];
$this->mockRequest('get', '/v1/balances/1', [], $body);
$balance = \FedaPay\Balance::retrieve(1);
$this->assertInstanceOf(\FedaPay\Balance::class, $balance);
$this->assertEquals(1, $balance->currency_id);
$this->assertEquals(1, $balance->account_id);
$this->assertEquals(952, $balance->amount);
$this->assertEquals('mtn', $balance->mode);
}
}