| Total Complexity | 3 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | class SchemaTest extends TestCase |
||
| 13 | { |
||
| 14 | private Schema $schema; |
||
| 15 | |||
| 16 | protected function setUp(): void |
||
| 17 | { |
||
| 18 | parent::setUp(); |
||
| 19 | $this->schema = new Schema(); |
||
| 20 | } |
||
| 21 | |||
| 22 | public function testSchemaIsValid(): void |
||
| 23 | { |
||
| 24 | $this->schema->assertValid(); |
||
| 25 | |||
| 26 | self::assertTrue(true, 'schema passes validation'); |
||
| 27 | } |
||
| 28 | |||
| 29 | public function testSchemaCanBeIntrospected(): void |
||
| 37 | } |
||
| 38 | } |
||
| 39 |