Get methods covered by a unit test
Posted
by Victor Hurdugaci
on Stack Overflow
See other posts from Stack Overflow
or by Victor Hurdugaci
Published on 2010-04-27T16:11:58Z
Indexed on
2010/04/27
16:13 UTC
Read the original article
Hit count: 400
Is is possible to do the following from a Visual Studio 2010 plugin? If yes, how?
- Run all unittests in solution (with code coverage enabled)
- Wait for all tests to complete
- For successfully completed tests: Determine which methods were called during each test (directly by the test or indirectly by the tested methods).
What I actually don't know is how to interact with the testing framework...
© Stack Overflow or respective owner