This repository has been archived on 2026-04-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
PayPal-PHP-SDK/tests/PayPal/Test/Api/CurrencyTest.php

61 lines
1.3 KiB
PHP

<?php
namespace PayPal\Test\Api;
use PayPal\Api\Currency;
use PHPUnit\Framework\TestCase;
/**
* Class Currency
*
* @package PayPal\Test\Api
*/
class CurrencyTest extends TestCase
{
/**
* Gets Json String of Object Currency
*
* @return string
*/
public static function getJson()
{
return '{"currency":"TestSample","value":"12.34"}';
}
/**
* Gets Object Instance with Json data filled in
*
* @return Currency
*/
public static function getObject()
{
return new Currency(self::getJson());
}
/**
* Tests for Serialization and Deserialization Issues
*
* @return Currency
*/
public function testSerializationDeserialization()
{
$obj = new Currency(self::getJson());
$this->assertNotNull($obj);
$this->assertNotNull($obj->getCurrency());
$this->assertNotNull($obj->getValue());
$this->assertEquals(self::getJson(), $obj->toJson());
return $obj;
}
/**
* @depends testSerializationDeserialization
* @param Currency $obj
*/
public function testGetters($obj)
{
$this->assertEquals($obj->getCurrency(), "TestSample");
$this->assertEquals($obj->getValue(), "12.34");
}
}