-
Notifications
You must be signed in to change notification settings - Fork 178
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add ITestContext hook #407
base: master
Are you sure you want to change the base?
Conversation
…ine.specifications into task/test-hooks
Hi @robertcoltheart, |
Sorry for the delay. I get where you're going with this, but I think it needs a bit of thought. For instance, your implementation only looks in the current assembly for a test context. What if you are timing tests for multiple test projects or multiple repos? It implies a lot of copy+paste code. The approach Xunit takes is to have assembly attributes that load the extensions into the xunit engine. That's obviously quite a bit of work. Will noodle a bit more on this topic and see if I can think of something that will help you. |
Add hook in the same style as AssemblyContext
(PR Used to run unit tests!)