New test project to make specification tests easier to write for developers #344
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.
Sunday evening having fun creating a spike of what a better test setup for us would look like.
This PR is an initial stab at porting some of the tests over without removing them from the old project.
The current test project infrastructure is still from my POC. This PR moves our tests over to F# for terser tests that we can name much better thanks to F# support for quoted identifiers:
This allows us to name out tests MUCH better and easier:
Markdown and html are highlighted correctly (as they are in our current tests).
Further more the expected and actual html are parsed and compared at an AST level for comparison. This allows us to be less rigid with HTML formatting and format it in a way thats better for readability:
On top of that we have stronger test failure message for HTML assertions to help us diagnose much quicker since they now include a full diff:
We move to xunit v3 so we no longer have to pass
ITestOutputHelper
around everywhere to ensure we see errors/warnings in test explorers in the IDE.For now we use a combination of FsUnit and Unquote for assertions but so far I am liking Unquote a lot more:
Unquote takes quoted f# expression AST executes
So e.g:
Will yield the following exception message:
Since it evaluates each step of the code invocation its super clear why the test is failing.