mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2024-11-26 14:56:03 +03:00
46 lines
1.0 KiB
PHP
46 lines
1.0 KiB
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\Summary;
|
||
|
use Mailgun\Model\EmailValidationV4\SummaryResult;
|
||
|
use Mailgun\Model\EmailValidationV4\SummaryRisk;
|
||
|
use Mailgun\Tests\Model\BaseModelTest;
|
||
|
|
||
|
class SummaryTest extends BaseModelTest
|
||
|
{
|
||
|
public function testCreate()
|
||
|
{
|
||
|
$json =
|
||
|
<<<'JSON'
|
||
|
{
|
||
|
"result": {
|
||
|
"deliverable": 181854,
|
||
|
"do_not_send": 5647,
|
||
|
"undeliverable": 12116,
|
||
|
"catch_all" : 2345,
|
||
|
"unknown": 5613
|
||
|
},
|
||
|
"risk": {
|
||
|
"high": 17763,
|
||
|
"low": 142547,
|
||
|
"medium": 41652,
|
||
|
"unknown": 5613
|
||
|
}
|
||
|
}
|
||
|
JSON;
|
||
|
$model = Summary::create(json_decode($json, true));
|
||
|
$this->assertInstanceOf(SummaryResult::class, $model->getResult());
|
||
|
$this->assertInstanceOf(SummaryRisk::class, $model->getRisk());
|
||
|
}
|
||
|
}
|