mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2024-11-23 04:56:02 +03:00
42 lines
1009 B
PHP
42 lines
1009 B
PHP
<?php
|
|
|
|
/*
|
|
* 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\EmailValidation;
|
|
|
|
use Mailgun\Model\EmailValidation\Parse;
|
|
|
|
class ParseTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
public function testParseConstructorWithValidData()
|
|
{
|
|
$data = [
|
|
'parsed' => ['parsed data'],
|
|
'unparseable' => ['unparseable data'],
|
|
];
|
|
|
|
$parts = Parse::create($data);
|
|
|
|
$this->assertEquals($data['parsed'], $parts->getParsed());
|
|
$this->assertEquals($data['unparseable'], $parts->getUnparseable());
|
|
}
|
|
|
|
public function testParseConstructorWithInvalidData()
|
|
{
|
|
$data = [
|
|
'parsed' => null,
|
|
'unparseable' => null,
|
|
];
|
|
|
|
$parts = Parse::create($data);
|
|
|
|
$this->assertEquals([], $parts->getParsed());
|
|
$this->assertEquals([], $parts->getUnparseable());
|
|
}
|
|
}
|