Files
kulakpos_web/vendor/fedapay/fedapay-php/tests/CurrencyTest.php
triagungbiantoro 417b7b7453
All checks were successful
Build, Push and Deploy / build-and-push (push) Successful in 3m27s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 16s
Build, Push and Deploy / deploy-staging (push) Successful in 31s
Build, Push and Deploy / deploy-production (push) Has been skipped
harga pada beranda terhubung ke manage plans di dashboard admin
2026-04-25 21:57:25 +07:00

75 lines
2.4 KiB
PHP
Executable File

<?php
namespace Tests;
class CurrencyTest extends BaseTestCase
{
/**
* Should return FedaPay\Currency
*/
public function testShouldReturnCurrencies()
{
$body = [
'v1/currencies' => [[
'id' => 1,
'klass' => 'v1/currency',
'name' => 'FCFA',
'iso' => 'XOF',
'code' => 952,
'prefix' => null,
'suffix' => 'CFA',
'div' => 1,
'created_at' => '2018-03-12T09:09:03.969Z',
'updated_at' => '2018-03-12T09:09:03.969Z'
]]
];
$this->mockRequest('get', '/v1/currencies', [], $body);
$object = \FedaPay\Currency::all();
$this->assertInstanceOf(\FedaPay\FedaPayObject::class, $object);
$this->assertTrue(is_array($object->currencies));
$this->assertInstanceOf(\FedaPay\Currency::class, $object->currencies[0]);
$this->assertEquals('FCFA', $object->currencies[0]->name);
$this->assertEquals('XOF', $object->currencies[0]->iso);
$this->assertEquals(952, $object->currencies[0]->code);
$this->assertEquals(null, $object->currencies[0]->prefix);
$this->assertEquals('CFA', $object->currencies[0]->suffix);
$this->assertEquals(1, $object->currencies[0]->div);
}
/**
* Should retrieve a Customer
*/
public function testShouldRetrievedACurrency()
{
$body = [
'v1/currency' => [
'id' => 1,
'klass' => 'v1/currency',
'name' => 'FCFA',
'iso' => 'XOF',
'code' => 952,
'prefix' => null,
'suffix' => 'CFA',
'div' => 1,
'created_at' => '2018-03-12T09:09:03.969Z',
'updated_at' => '2018-03-12T09:09:03.969Z'
]
];
$this->mockRequest('get', '/v1/currencies/1', [], $body);
$currency = \FedaPay\Currency::retrieve(1);
$this->assertInstanceOf(\FedaPay\Currency::class, $currency);
$this->assertEquals('FCFA', $currency->name);
$this->assertEquals('XOF', $currency->iso);
$this->assertEquals(952, $currency->code);
$this->assertEquals(null, $currency->prefix);
$this->assertEquals('CFA', $currency->suffix);
$this->assertEquals(1, $currency->div);
}
}