mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2024-11-23 13:06:02 +03:00
45 lines
969 B
PHP
45 lines
969 B
PHP
|
<?php
|
||
|
|
||
|
/*
|
||
|
* Copyright (C) 2013 Mailgun
|
||
|
*
|
||
|
* This software may be modified and distributed under the terms
|
||
|
* of the MIT license. See the LICENSE file for details.
|
||
|
*/
|
||
|
|
||
|
namespace Mailgun\Tests\Api;
|
||
|
|
||
|
use Mailgun\Api\Suppression;
|
||
|
|
||
|
/**
|
||
|
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
|
||
|
*/
|
||
|
class SuppressionTest extends TestCase
|
||
|
{
|
||
|
public function testBounces()
|
||
|
{
|
||
|
$api = $this->getApiInstance();
|
||
|
$this->assertInstanceOf(Suppression\Bounce::class, $api->bounces());
|
||
|
}
|
||
|
|
||
|
public function testComplaints()
|
||
|
{
|
||
|
$api = $this->getApiInstance();
|
||
|
$this->assertInstanceOf(Suppression\Complaint::class, $api->complaints());
|
||
|
}
|
||
|
|
||
|
public function testUnsubscribes()
|
||
|
{
|
||
|
$api = $this->getApiInstance();
|
||
|
$this->assertInstanceOf(Suppression\Unsubscribe::class, $api->unsubscribes());
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* {@inheritdoc}
|
||
|
*/
|
||
|
protected function getApiClass()
|
||
|
{
|
||
|
return Suppression::class;
|
||
|
}
|
||
|
}
|