mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2024-11-26 06:46:08 +03:00
31 lines
587 B
PHP
31 lines
587 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\Domain;
|
||
|
|
||
|
use Mailgun\Model\Domain\OpenTracking;
|
||
|
use Mailgun\Tests\Model\BaseModelTest;
|
||
|
|
||
|
class OpenTrackingTest extends BaseModelTest
|
||
|
{
|
||
|
public function testCreate()
|
||
|
{
|
||
|
$json =
|
||
|
<<<'JSON'
|
||
|
{
|
||
|
"active": true
|
||
|
}
|
||
|
JSON;
|
||
|
$model = OpenTracking::create(json_decode($json, true));
|
||
|
$this->assertTrue($model->isActive());
|
||
|
}
|
||
|
}
|