20 lines
373 B
PHP
20 lines
373 B
PHP
<?php
|
|
/** DomFramework - Tests
|
|
* @package domframework
|
|
* @author Dominique Fournier <dominique@fournier38.fr>
|
|
* @license BSD
|
|
*/
|
|
|
|
namespace Domframework\Tests;
|
|
|
|
use Domframework\Ratelimit;
|
|
|
|
/** Test the Ratelimit.php file */
|
|
class RatelimitTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
public function test_ratelimit0 ()
|
|
{
|
|
$ratelimit = new Ratelimit ();
|
|
}
|
|
}
|