mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2024-11-26 14:56:03 +03:00
32 lines
763 B
PHP
32 lines
763 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
/*
|
||
|
* 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\Model\Suppression\Whitelists;
|
||
|
|
||
|
use Mailgun\Model\Suppression\Whitelist\DeleteAllResponse;
|
||
|
use Mailgun\Tests\Model\BaseModelTest;
|
||
|
|
||
|
class DeleteAllResponseTest extends BaseModelTest
|
||
|
{
|
||
|
public function testCreate()
|
||
|
{
|
||
|
$json =
|
||
|
<<<'JSON'
|
||
|
{
|
||
|
"message": "Whitelist addresses/domains for this domain have been removed"
|
||
|
}
|
||
|
JSON;
|
||
|
|
||
|
$model = DeleteAllResponse::create(json_decode($json, true));
|
||
|
$this->assertEquals('Whitelist addresses/domains for this domain have been removed', $model->getMessage());
|
||
|
}
|
||
|
}
|