| 1 | <?php |
||
| 11 | class ThrottlingServiceTest extends TestCase |
||
| 12 | { |
||
| 13 | private $service; |
||
| 14 | private $ip = "123"; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @throws \Exception |
||
| 18 | */ |
||
| 19 | public function setUp(): void |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @test |
||
| 31 | */ |
||
| 32 | public function testInvalidRate() |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @test |
||
| 41 | */ |
||
| 42 | public function testValidRate() |
||
| 48 | |||
| 49 | /** |
||
| 50 | * @test |
||
| 51 | * @throws \Exception |
||
| 52 | */ |
||
| 53 | public function testValidWithFilesCache() |
||
| 64 | |||
| 65 | } |