Running unit tests after local build with Visual Studio 2010

早过忘川 提交于 2020-01-11 04:38:26

问题


Using Visual Studio 2010, is there a way to run all unit tests in a solution automatically after building the solution locally?


回答1:


You could record a macro to do it. In the macro, you would run the build and then start the unit tests. Then you could just run the macro to do it all in one step. Check Tools->Macros for more details.

EDIT You can also record keyboard shortcuts for the macros, and I think you can use existing key sequences, such as CTRL-SHIFT-B for build. So if you wanted to override the default behavior of CTRL-SHIFT-B, this would be one way.




回答2:


for anyone still reading this, use this visual studio extension:

http://visualstudiogallery.msdn.microsoft.com/c074d3c6-71e2-4628-9e7c-7690e706aef4

It does exactly what you want, i.e. run your tests after a local build. Failed tests will show up as a build error in your error window...

Why is this not out-of-the-box functionality @Microsoft? :)




回答3:


You could also try this addon: http://ox.no/software/continuoustesting




回答4:


One of these macros should fulfill your needs:

    Sub RebuildAndTestAll()
        DTE.Solution().SolutionBuild().Clean(True)
        DTE.Solution().SolutionBuild().Build(True)
        DTE.ExecuteCommand("Test.RunAllTestsInSolution")
    End Sub

    Sub BuildAndTest()
        DTE.Solution().SolutionBuild().Build(True)
        DTE.ExecuteCommand("Test.RunAllTestsInSolution")
    End Sub



回答5:


This page describes running automated tests from the command line:

http://msdn.microsoft.com/en-us/library/ms182486.aspx

MSTest.exe is the program you need, but there's much more info on the MS web site.




回答6:


For those who want to test in Visual Studio 2012 here's a very interesting addon:

TestAfterBuild

http://www.youtube.com/watch?v=t7X_-eKDhwk

http://visualstudiogallery.msdn.microsoft.com/5dca9c5c-29cf-4fd7-b3ff-573e5776f0bd?SRC=VSIDE



来源:https://stackoverflow.com/questions/3865593/running-unit-tests-after-local-build-with-visual-studio-2010

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!