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