Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
unsatisfiableness
/
core
/
lib
/
2checkout
/
2checkout-php
/
test
:
CompanyTest.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php require_once(dirname(__FILE__) . '/../lib/Twocheckout.php'); class TwocheckoutTest extends PHPUnit_Framework_TestCase { public function setUp() { Twocheckout::username('testlibraryapi901248204'); Twocheckout::password('testlibraryapi901248204PASS'); Twocheckout::sandbox(true); } public function testCompanyRetrieve() { $company = Twocheckout_Company::retrieve(); $this->assertEquals("901248204", $company['vendor_company_info']['vendor_id']); } public function testContactRetrieve() { $company = Twocheckout_Contact::retrieve(); $this->assertEquals("901248204", $company['vendor_contact_info']['vendor_id']); } }