mailgun-php/tests/Model/MailingList/ValidateResponseTest.php
2020-10-15 22:00:38 +01:00

33 lines
780 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\MailingList;
use Mailgun\Model\MailingList\ValidateResponse;
use Mailgun\Tests\Model\BaseModelTest;
class ValidateResponseTest extends BaseModelTest
{
public function testCreate()
{
$json =
<<<'JSON'
{
"id": "listname@yourdomain.com",
"message": "The validation job was submitted."
}
JSON;
$model = ValidateResponse::create(json_decode($json, true));
$this->assertEquals('The validation job was submitted.', $model->getMessage());
$this->assertEquals('listname@yourdomain.com', $model->getId());
}
}