Total Complexity | 2 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class CorsServiceProviderTest extends \Codeception\Test\Unit |
||
9 | { |
||
10 | use \Codeception\Specify; |
||
11 | |||
12 | /** |
||
13 | * @var MockApplication |
||
14 | */ |
||
15 | protected $app; |
||
16 | |||
17 | /** |
||
18 | * @inheritdoc |
||
19 | */ |
||
20 | protected function setup(): void |
||
21 | { |
||
22 | $this->app = new MockApplication(); |
||
23 | $this->app->register(CorsServiceProvider::class); |
||
24 | } |
||
25 | |||
26 | /** |
||
27 | * |
||
28 | */ |
||
29 | public function testAssertCanBeRegistered() |
||
34 | }); |
||
35 | } |
||
37 |