Skip to content

Commit

Permalink
test: add interface type case
Browse files Browse the repository at this point in the history
  • Loading branch information
vuongxuongminh committed Mar 20, 2024
1 parent d929388 commit e0f275f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tests/ExecutionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,15 @@ public function testExecution(): void
<<<'SDL'
type Query {
dummy: String!
dummy_object: DummyObject!
dummy_object: CustomInterface!
dummy_error: String
}
type DummyObject {
interface CustomInterface {
dummy: String!
}
type DummyObject implements CustomInterface {
dummy: String!
}
SDL
Expand Down

0 comments on commit e0f275f

Please sign in to comment.