is there a way? do I have to wait for building every time I start the test? I want to build from visual studio not from test
thanks
|
is there a way? do I have to wait for building every time I start the test? I want to build from visual studio not from test thanks |
|||||||||||
|
|
Any time your code changes and you run your test it is going to do a build... so technically you can run your test over and over again and they will only build the first time, but once you run your test why would you run them again without making a code change? Couple of things that I use that make your test run faster are:
Edit: Reading your question again if you want to build and not from a test you can just go to the menu and click Build->Build Solution or press F6. Also it would be helpful if you indicated which version of visual studio you are using because 2010 is different in the sense that you have to click refresh. Either way are you able to clarify? |
|||||||||
|
|
Any changes to source code cause compilation, because in order to run tests VS needs up to date DLL with tests. If you have already compiled project then you can run test multiple times without compilation. PS: I run MSTest using TestDriven.NET as for me it is faster. |
|||
|
|