mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2024-11-23 13:06:02 +03:00
20 lines
360 B
PHP
20 lines
360 B
PHP
<?PHP
|
|
namespace Mailgun\Tests\Connection;
|
|
|
|
use Mailgun\Tests\Mock\Mailgun;
|
|
|
|
class ConnectionTest extends \Mailgun\Tests\MailgunTestCase
|
|
{
|
|
|
|
private $client;
|
|
|
|
public function setUp()
|
|
{
|
|
}
|
|
|
|
public function testNewClientInstantiation()
|
|
{
|
|
$this->client = new Mailgun("My-Super-Awesome-API-Key", "samples.mailgun.org", false);
|
|
}
|
|
}
|