Add EmailValidationTest

This commit is contained in:
David Garcia 2018-02-01 23:25:14 +00:00 committed by David Garcia
parent f12480e313
commit 3f097bb178

View File

@ -0,0 +1,23 @@
<?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 Mailgun\Api\EmailValidation;
/**
* @author David Garcia <me@davidgarcia.cat>
*/
class EmailValidationTest extends TestCase
{
protected function getApiClass()
{
return EmailValidation::class;
}
}