Completed
Push — master ( 6fd728...1b0e9e )
by David
14s queued 11s
created

FailAuthorizationServiceTest::testIsAllowed()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 5
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
namespace TheCodingMachine\GraphQL\Controllers\Security;
4
5
use PHPUnit\Framework\TestCase;
6
7
class FailAuthorizationServiceTest extends TestCase
8
{
9
10
    public function testIsAllowed()
11
    {
12
        $service = new FailAuthorizationService();
13
        $this->expectException(SecurityNotImplementedException::class);
14
        $service->isAllowed('foo');
15
    }
16
}
17