-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
<!-- The PR description should answer 2 (maybe 3) important questions: --> ### What <!-- What is this PR trying to accomplish (and why, if it's not obvious)? --> This PR separates the testing configuration with the sample configuration to enable mutation tests to run without any dependency on the sample configuration. ### How <!-- How is it trying to accomplish it (what are the implementation steps)? -->
- Loading branch information
1 parent
cd6a57c
commit 7f7efa7
Showing
16 changed files
with
19,117 additions
and
95 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"insert_artist_and_return_id": { | ||
"sql": "INSERT INTO [dbo].[Artist] (ArtistId, Name) OUTPUT inserted.* VALUES ({{ArtistId}}, {{Name}})", | ||
"columns": { | ||
"ArtistId": { | ||
"name": "ArtistId", | ||
"type": "int", | ||
"nullable": "nonNullable", | ||
"description": null | ||
}, | ||
"Name": { | ||
"name": "Name", | ||
"type": "varchar", | ||
"nullable": "nullable", | ||
"description": null, | ||
"castAs": "varchar(100)" | ||
} | ||
}, | ||
"arguments": { | ||
"ArtistId": { | ||
"name": "ArtistId", | ||
"type": "int", | ||
"nullable": "nonNullable", | ||
"description": null | ||
}, | ||
"Name": { | ||
"name": "Name", | ||
"type": "varchar", | ||
"nullable": "nullable", | ||
"description": null | ||
} | ||
}, | ||
"description": null | ||
} | ||
} |
Oops, something went wrong.