[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: CurrencyTest.php
<?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); } }
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 59.8 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002