-
Notifications
You must be signed in to change notification settings - Fork 748
Closed
Description
I find https://github.com/nunit/nunit/blob/master/BUILDING.md#build-script a bit vague and we've had a number of folks asking us how we test.
I think there's a lot of room for personal style assuming we have solid CI. My ideal workflow:
- Locate existing tests or write new tests
- Pin that test fixture to make it quick to rerun the tests while typing (even better, start continuous testing) by filtering classes in Test Explorer or adding tests to a new ReSharper test session
- Implement a change
- Before creating a Git commit, run
.\build.ps1 -t test
to make sure the passes and failures are as expected - If there are any surprises, find and pin the affected tests I didn't know about and go to step 3
rprouse and BrunoJuchli