Completed
Push — master ( 3853ec...f78c46 )
by Adrien
07:49
created

SchemaTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 8
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A testSchemaIsValid() 0 6 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace ApplicationTest\Api;
6
7
use Application\Api\Schema;
8
use PHPUnit\Framework\TestCase;
9
10
class SchemaTest extends TestCase
11
{
12
    public function testSchemaIsValid(): void
13
    {
14
        $schema = new Schema();
15
        $schema->assertValid();
16
17
        self::assertTrue(true, 'schema passes validation');
18
    }
19
}
20