forked from LiveCarta/PayPal-PHP-SDK
41 lines
911 B
PHP
41 lines
911 B
PHP
<?php
|
|
use PayPal\Exception\PayPalMissingCredentialException;
|
|
|
|
/**
|
|
* Test class for PayPalMissingCredentialException.
|
|
*
|
|
*/
|
|
class PayPalMissingCredentialExceptionTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
/**
|
|
* @var PayPalMissingCredentialException
|
|
*/
|
|
protected $object;
|
|
|
|
/**
|
|
* Sets up the fixture, for example, opens a network connection.
|
|
* This method is called before a test is executed.
|
|
*/
|
|
protected function setUp()
|
|
{
|
|
$this->object = new PayPalMissingCredentialException;
|
|
}
|
|
|
|
/**
|
|
* Tears down the fixture, for example, closes a network connection.
|
|
* This method is called after a test is executed.
|
|
*/
|
|
protected function tearDown()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function testErrorMessage()
|
|
{
|
|
$msg = $this->object->errorMessage();
|
|
$this->assertContains('Error on line', $msg);
|
|
}
|
|
}
|