Test Setup Failed
Push — main ( abdcb9...2e5f68 )
by Slawomir
04:37
created

PostUpdatedIEventContract   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
c 1
b 0
f 0
dl 0
loc 7
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A testPostCreatedIEvent() 0 4 1
1
<?php
2
3
namespace App\Tests\Modules\Security\Contracts\Inbound;
4
5
use App\Modules\Security\Api\Event\Inbound\PostDeletedSecurityIEvent;
6
use App\Modules\Security\Api\Event\Inbound\PostUpdatedSecurityIEvent;
7
use App\Tests\TestUtils\Contracts\ApplicationInboundEventContract;
8
9
class PostUpdatedIEventContract extends ApplicationInboundEventContract
10
{
11
12
    public function testPostCreatedIEvent()
13
    {
14
        self::assertTrue(
15
            $this->verifyContract(PostUpdatedSecurityIEvent::class, "Security/PostUpdatedSecurityIEvent")
16
        );
17
    }
18
19
}