mailgun-php/tests/Api/EmailValidationTest.php

42 lines
908 B
PHP
Raw Normal View History

2018-02-02 02:25:14 +03:00
<?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\Api;
use GuzzleHttp\Psr7\Response;
2018-02-02 02:25:14 +03:00
use Mailgun\Api\EmailValidation;
/**
* @author David Garcia <me@davidgarcia.cat>
*/
class EmailValidationTest extends TestCase
{
protected function getApiClass()
{
return EmailValidation::class;
}
public function testValidEmail()
{
$params = [
'address' => 'me@davidgarcia.cat',
'mailbox_verification' => true,
];
$api = $this->getApiMock();
$api->expects($this->once())
->method('httpGet')
->with('/address/private/validate', $params)
->willReturn(new Response());
$api->validate($params['address'], $params['mailbox_verification']);
}
2018-02-02 02:25:14 +03:00
}