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

SchemaTest::testSchemaIsValid()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 3
nc 1
nop 0
dl 0
loc 6
rs 10
c 0
b 0
f 0
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