-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: update to remove deprecated Easy Testing
- Loading branch information
Showing
48 changed files
with
114 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 0 additions & 4 deletions
4
test-resources/Inspections/CamelCaseFieldInspectionTest/snake_case_field.graphql.inc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,3 @@ | ||
type User { | ||
full_name: String! | ||
} | ||
----- | ||
type User { | ||
fullName: String! | ||
} |
4 changes: 0 additions & 4 deletions
4
...tions/InputSuffixInputObjectTypeDefinitionInspectionTest/input_without_suffix.graphql.inc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,3 @@ | ||
input User { | ||
fullName: String! | ||
} | ||
----- | ||
input UserInput { | ||
fullName: String! | ||
} |
5 changes: 0 additions & 5 deletions
5
...lDirectiveRequiresIdFieldInspectionTest/model_directive_type_without_id_field.graphql.inc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,3 @@ | ||
type User @model { | ||
name: String! | ||
} | ||
----- | ||
type User @model { | ||
id: ID! | ||
name: String! | ||
} |
5 changes: 0 additions & 5 deletions
5
...FieldArgumentNamedInputInspectionTest/mutation_field_argument_named_something.graphql.inc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,3 @@ | ||
type Mutation { | ||
version(environment: String!): String! | ||
} | ||
|
||
----- | ||
type Mutation { | ||
version(input: String!): String! | ||
} |
5 changes: 0 additions & 5 deletions
5
test-resources/Inspections/NonNullableIdInspectionTest/nullable_id_field.graphql.inc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,3 @@ | ||
type Person { | ||
id: ID | ||
} | ||
|
||
----- | ||
type Person { | ||
id: ID! | ||
} |
5 changes: 0 additions & 5 deletions
5
...es/Inspections/NonNullableInsideListInspectionTest/nullable_inside_list_field.graphql.inc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,3 @@ | ||
type Person { | ||
friends: [Person]! | ||
} | ||
|
||
----- | ||
type Person { | ||
friends: [Person!]! | ||
} |
5 changes: 0 additions & 5 deletions
5
test-resources/Inspections/NonNullableListInspectionTest/nullable_field_list.graphql.inc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,3 @@ | ||
type Person { | ||
friends: [Person] | ||
} | ||
|
||
----- | ||
type Person { | ||
friends: [Person]! | ||
} |
4 changes: 0 additions & 4 deletions
4
...rces/Inspections/PascalCaseObjectTypeDefinitionInspectionTest/snake_case_type.graphql.inc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,3 @@ | ||
type user_information { | ||
fullName: String! | ||
} | ||
----- | ||
type UserInformation { | ||
fullName: String! | ||
} |
4 changes: 0 additions & 4 deletions
4
...pperSnakeCaseEnumCaseDefinitionInspectionTest/camel_case_multi_word_enum_case.graphql.inc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,3 @@ | ||
enum Status { | ||
inProgress | ||
} | ||
----- | ||
enum Status { | ||
IN_PROGRESS | ||
} |
4 changes: 0 additions & 4 deletions
4
...ons/UpperSnakeCaseEnumCaseDefinitionInspectionTest/lower_snake_case_enum_case.graphql.inc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,3 @@ | ||
enum Status { | ||
in_progress | ||
} | ||
----- | ||
enum Status { | ||
IN_PROGRESS | ||
} |
4 changes: 0 additions & 4 deletions
4
...pections/UpperSnakeCaseEnumCaseDefinitionInspectionTest/pascal_case_enum_case.graphql.inc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,3 @@ | ||
enum Status { | ||
Active | ||
} | ||
----- | ||
enum Status { | ||
ACTIVE | ||
} |
4 changes: 0 additions & 4 deletions
4
...perSnakeCaseEnumCaseDefinitionInspectionTest/pascal_case_multi_word_enum_case.graphql.inc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,3 @@ | ||
enum Status { | ||
InProgress | ||
} | ||
----- | ||
enum Status { | ||
IN_PROGRESS | ||
} |
3 changes: 3 additions & 0 deletions
3
...omponent_Finder_SplFileInfo___2___Symfony_Component_Finder_SplFileInfo_Object_______.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
type User { | ||
fullName: String! | ||
} |
4 changes: 4 additions & 0 deletions
4
...mponent_Finder_SplFileInfo___10___Symfony_Component_Finder_SplFileInfo_Object_______.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
enum Some { | ||
"A test" | ||
TEST | ||
} |
4 changes: 4 additions & 0 deletions
4
...mponent_Finder_SplFileInfo___11___Symfony_Component_Finder_SplFileInfo_Object_______.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
"Input for a user" | ||
input UserInput { | ||
name: String! | ||
} |
1 change: 1 addition & 0 deletions
1
...mponent_Finder_SplFileInfo___12___Symfony_Component_Finder_SplFileInfo_Object_______.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
scalar something |
1 change: 1 addition & 0 deletions
1
...omponent_Finder_SplFileInfo___2___Symfony_Component_Finder_SplFileInfo_Object_______.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
union Pro = User | Company |
4 changes: 4 additions & 0 deletions
4
...omponent_Finder_SplFileInfo___3___Symfony_Component_Finder_SplFileInfo_Object_______.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
"Allowed cakes" | ||
enum Cake { | ||
CHOCOLATE | ||
} |
1 change: 1 addition & 0 deletions
1
...omponent_Finder_SplFileInfo___4___Symfony_Component_Finder_SplFileInfo_Object_______.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
interface Admin |
1 change: 1 addition & 0 deletions
1
...omponent_Finder_SplFileInfo___5___Symfony_Component_Finder_SplFileInfo_Object_______.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
type User |
4 changes: 4 additions & 0 deletions
4
...omponent_Finder_SplFileInfo___6___Symfony_Component_Finder_SplFileInfo_Object_______.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
"Some user" | ||
type User { | ||
name: String! | ||
} |
1 change: 1 addition & 0 deletions
1
...omponent_Finder_SplFileInfo___8___Symfony_Component_Finder_SplFileInfo_Object_______.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
input Something |
4 changes: 4 additions & 0 deletions
4
...omponent_Finder_SplFileInfo___1___Symfony_Component_Finder_SplFileInfo_Object_______.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
enum MyEnum { | ||
GOOD | ||
BAD | ||
} |
3 changes: 3 additions & 0 deletions
3
...omponent_Finder_SplFileInfo___1___Symfony_Component_Finder_SplFileInfo_Object_______.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
input UserInput { | ||
fullName: String! | ||
} |
4 changes: 4 additions & 0 deletions
4
...y_Component_Finder_SplFileInfo____Symfony_Component_Finder_SplFileInfo_Object_______.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
type User @model { | ||
id: ID! | ||
name: String! | ||
} |
3 changes: 3 additions & 0 deletions
3
...omponent_Finder_SplFileInfo___3___Symfony_Component_Finder_SplFileInfo_Object_______.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
type Mutation { | ||
version(input: String!): String! | ||
} |
3 changes: 3 additions & 0 deletions
3
...omponent_Finder_SplFileInfo___1___Symfony_Component_Finder_SplFileInfo_Object_______.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
type Person { | ||
id: ID! | ||
} |
3 changes: 3 additions & 0 deletions
3
...omponent_Finder_SplFileInfo___1___Symfony_Component_Finder_SplFileInfo_Object_______.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
type Person { | ||
friends: [Person!]! | ||
} |
3 changes: 3 additions & 0 deletions
3
...omponent_Finder_SplFileInfo___4___Symfony_Component_Finder_SplFileInfo_Object_______.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
type Person { | ||
friends: [Person]! | ||
} |
3 changes: 3 additions & 0 deletions
3
...omponent_Finder_SplFileInfo___1___Symfony_Component_Finder_SplFileInfo_Object_______.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
type UserInformation { | ||
fullName: String! | ||
} |
3 changes: 3 additions & 0 deletions
3
...omponent_Finder_SplFileInfo___1___Symfony_Component_Finder_SplFileInfo_Object_______.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
enum Status { | ||
IN_PROGRESS | ||
} |
3 changes: 3 additions & 0 deletions
3
...omponent_Finder_SplFileInfo___2___Symfony_Component_Finder_SplFileInfo_Object_______.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
enum Status { | ||
IN_PROGRESS | ||
} |
3 changes: 3 additions & 0 deletions
3
...omponent_Finder_SplFileInfo___3___Symfony_Component_Finder_SplFileInfo_Object_______.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
enum Status { | ||
ACTIVE | ||
} |
3 changes: 3 additions & 0 deletions
3
...omponent_Finder_SplFileInfo___4___Symfony_Component_Finder_SplFileInfo_Object_______.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
enum Status { | ||
IN_PROGRESS | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.