mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2024-11-23 21:16:02 +03:00
50 lines
827 B
PHP
50 lines
827 B
PHP
|
<?php
|
||
|
|
||
|
/*
|
||
|
* Copyright (C) 2013-2016 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;
|
||
|
|
||
|
/**
|
||
|
* @author David Garcia <me@davidgarcia.cat>
|
||
|
*/
|
||
|
class RoutesTest extends TestCase
|
||
|
{
|
||
|
protected function setUp()
|
||
|
{
|
||
|
$this->markTestSkipped('Routes API tests not implemented yet.');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* {@inheritdoc}
|
||
|
*/
|
||
|
protected function getApiClass()
|
||
|
{
|
||
|
return 'Mailgun\Api\Routes';
|
||
|
}
|
||
|
|
||
|
public function testGetRoutesCollection()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public function testGetRoutesResource()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public function testPostRouteResource()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public function testUpdateRouteResource()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public function testDeleteRouteResource()
|
||
|
{
|
||
|
}
|
||
|
}
|