Test generators#228
Merged
ErikSchierboom merged 11 commits intoexercism:masterfrom Mar 14, 2017
ErikSchierboom:test-generators
Merged
Test generators#228ErikSchierboom merged 11 commits intoexercism:masterfrom ErikSchierboom:test-generators
ErikSchierboom merged 11 commits intoexercism:masterfrom
ErikSchierboom:test-generators
Conversation
This was referenced Mar 13, 2017
Merged
Member
Author
|
By the way, I've opted to keep things as simple as possible. No templating engine, no Roslyn syntax trees, just plain string manipulation. If anyone feels that is overly simple, let me know. |
Member
Author
|
There are still some things that need to be added:
|
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR creates the basic infrastructure for having test generators, that is code that uses the canonical data as defined in the x-common repository to generate our C# test file. This has one huge advantage: we can very easily keep our track up-to-date with the latest canonical data, just by regenerating the tests using the generators.
I would suggest that for the work in #195, where we verify for each exercise if the current tests match the canonical data, we start adding test generators. Note: not all exercises currently have canonical data, but a large portion of them do.
Closes #224