Fixes to Model Object Property Type

This commit is contained in:
Jay Patel
2015-03-19 14:13:52 -05:00
parent 0a32a6323c
commit 2c90b77c5a
3 changed files with 16 additions and 4 deletions

View File

@@ -4,7 +4,9 @@ namespace PayPal\Test\Common;
use PayPal\Api\Amount;
use PayPal\Api\Currency;
use PayPal\Api\Details;
use PayPal\Api\InvoiceItem;
use PayPal\Api\Item;
use PayPal\Api\Tax;
use PayPal\Converter\FormatConverter;
use PayPal\Common\PayPalModel;
use PayPal\Test\Validation\NumericValidatorTest;
@@ -27,6 +29,8 @@ class FormatConverterTest extends \PHPUnit_Framework_TestCase
array(new Details(), 'Insurance'),
array(new Details(), 'HandlingFee'),
array(new Details(), 'GiftWrap'),
array(new InvoiceItem(), 'Quantity'),
array(new Tax(), 'Percent')
);
}