%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/public_html/admin1/vendor/square/square/tests/Flows/ |
Upload File : |
<?php
namespace Square\Tests;
use Square\Models\Address;
use PHPUnit\Framework\TestCase;
class JsonSerializeTest extends TestCase
{
public function testSerialize()
{
$address = new Address;
$address->setAddressLine1("500 Electric Ave");
$address->setAddressLine2("Suite 600");
$address->setLocality("New York");
$address->setAdministrativeDistrictLevel1("NY");
$address->setPostalCode("10003");
$address->setCountry("US");
$this->assertEquals(
'{"address_line_1":"500 Electric Ave","address_line_2":"Suite 600","locality":"New York","administrative_district_level_1":"NY","postal_code":"10003","country":"US"}',
\json_encode($address)
);
}
}