1 | <?php declare(strict_types = 1); |
||
19 | class SecuredApiTest extends WebTestCase |
||
20 | { |
||
21 | use ApiTestCase; |
||
22 | |||
23 | /** |
||
24 | * @var string |
||
25 | */ |
||
26 | protected $env = 'secure'; |
||
27 | |||
28 | /** |
||
29 | * @test |
||
30 | */ |
||
31 | public function canGetUnsecuredContentWithoutAuth() |
||
37 | |||
38 | /** |
||
39 | * @test |
||
40 | */ |
||
41 | public function cannotGetSecuredContentWithoutAuth() |
||
47 | |||
48 | /** |
||
49 | * @test |
||
50 | */ |
||
51 | public function canGetSecuredContentWithAuth() |
||
57 | } |
||
58 |
This method has been deprecated. The supplier of the class has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the method will be removed from the class and what other method or class to use instead.