mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2024-11-26 06:46:08 +03:00
32 lines
684 B
PHP
32 lines
684 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\ImportResponse;
|
|
use Mailgun\Tests\Model\BaseModelTest;
|
|
|
|
class ImportResponseTest extends BaseModelTest
|
|
{
|
|
public function testCreate()
|
|
{
|
|
$json =
|
|
<<<'JSON'
|
|
{
|
|
"message": "file uploaded successfully"
|
|
}
|
|
JSON;
|
|
|
|
$model = ImportResponse::create(json_decode($json, true));
|
|
$this->assertEquals('file uploaded successfully', $model->getMessage());
|
|
}
|
|
}
|