2 use PayPal\Core\PPBaseService;
4 * Test class for PPBaseService.
7 class PPBaseServiceTest extends \PHPUnit_Framework_TestCase
15 * Sets up the fixture, for example, opens a network connection.
16 * This method is called before a test is executed.
18 protected function setUp()
20 $this->object = new PPBaseService('serviceName', 'serviceBinding', null);
24 * Tears down the fixture, for example, closes a network connection.
25 * This method is called after a test is executed.
27 protected function tearDown()
34 public function testGetServiceName()
36 $this->assertEquals('serviceName',$this->object->getServiceName() );