mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2024-11-30 00:46:04 +03:00
33 lines
784 B
PHP
33 lines
784 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\Event;
|
||
|
|
||
|
use Mailgun\Model\EmailValidationV4\JobDownloadUrl;
|
||
|
use Mailgun\Tests\Model\BaseModelTest;
|
||
|
|
||
|
class JobDownloadUrlTest extends BaseModelTest
|
||
|
{
|
||
|
public function testCreate()
|
||
|
{
|
||
|
$json =
|
||
|
<<<'JSON'
|
||
|
{
|
||
|
"csv": "https://example.com/file.csv",
|
||
|
"json": "https://example.com/file.json"
|
||
|
}
|
||
|
JSON;
|
||
|
$model = JobDownloadUrl::create(json_decode($json, true));
|
||
|
$this->assertEquals('https://example.com/file.csv', $model->getCsv());
|
||
|
$this->assertEquals('https://example.com/file.json', $model->getJson());
|
||
|
}
|
||
|
}
|