File manager - Edit - /var/www/payraty/hris/vendor/fedapay/fedapay-php/tests/FedapayObjectTest.php
Back
<?php namespace Tests; class FedaPayObjectTest extends BaseTestCase { /** * Should set and get object attributes */ public function testShouldSetObjectAttribute() { $object = new \FedaPay\FedaPayObject; $object->id = 1; $object->name = 'name'; $this->assertEquals($object->id, 1); $this->assertEquals($object['id'], 1); $this->assertEquals($object->name, 'name'); $this->assertEquals($object['name'], 'name'); $object = new \FedaPay\FedaPayObject(2); $this->assertEquals($object->id, 2); $object = new \FedaPay\FedaPayObject(['foo' => 'value']); $this->assertEquals($object->foo, 'value'); $this->assertTrue(isset($object->foo)); $this->assertTrue(isset($object['foo'])); $this->assertFalse(isset($object['doe'])); $this->assertFalse(isset($object->doe)); } public function testShouldSerializeObject() { $object = new \FedaPay\FedaPayObject(['foo' => 'value']); $json = json_encode($object); $this->assertEquals($json, '{"foo":"value"}'); } public function testShouldRefreshObject() { $object = new \FedaPay\FedaPayObject; $object->refreshFrom(['foo' => 'value'], null); $this->assertEquals($object->foo, 'value'); } public function testShouldSerializeObjectParams() { $object = new \FedaPay\FedaPayObject; $object->refreshFrom(['foo' => 'value', 'id' => 2], null); $params = $object->serializeParameters(); $this->assertTrue(is_array($params)); $this->assertEquals($params['foo'], 'value'); $this->assertArrayNotHasKey('id', $params); } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings