mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2024-11-25 22:36:06 +03:00
33 lines
831 B
PHP
33 lines
831 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\ValidationStatusDownloadUrl;
|
|
use Mailgun\Tests\Model\BaseModelTest;
|
|
|
|
class ValidationStatusDownloadUrlTest extends BaseModelTest
|
|
{
|
|
public function testCreate()
|
|
{
|
|
$json =
|
|
<<<'JSON'
|
|
{
|
|
"csv": "http://example.com/filname.csv",
|
|
"json": "http://example.com/filname.json"
|
|
}
|
|
JSON;
|
|
$model = ValidationStatusDownloadUrl::create(json_decode($json, true));
|
|
$this->assertEquals('http://example.com/filname.csv', $model->getCsv());
|
|
$this->assertEquals('http://example.com/filname.json', $model->getJson());
|
|
}
|
|
}
|