This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/ext/graphql/test.php

16 lines
254 B
PHP
Raw Normal View History

2023-02-01 12:50:00 +00:00
<?php
declare(strict_types=1);
namespace Shimmie2;
class GraphQLTest extends ShimmiePHPUnitTestCase
{
public function testSchema()
{
$schema = \GQLA\genSchema();
$schema->assertValid();
2023-02-02 16:52:55 +00:00
$this->assertTrue(true);
2023-02-01 12:50:00 +00:00
}
}