http://www.cnblogs.com/jenneyblog/archive/2012/09/14/mstestcommandline.html
怎样在没有安装VS2010的环境里用mstest.exe跑test case?(注:以下实验在64位Windows 7上通过)
1. 首先在装有VS2010的环境里,新建一个文件夹,如C:UsersusernameDesktopmstestCommandLine(注意文件夹名不能有空格,否则运行下面的脚本会有问题),然后把下面的脚本getmstest.bat复制到此目录下,运行getmstest.bat,这个bat会把mstest.exe需要的类库及注册表都导入到当前目录下一个叫mstest的文件夹里
getmstest.bat
@echo off setlocal set here=%~dp0 mkdir mstest set targetfolder=%here%mstest set programs=%programfiles% if exist "%programfiles(x86)%" set programs=%programfiles(x86)% set vs2010="%programs%Microsoft Visual Studio 10.0" set gac1="%windir%"assembly set gac2="%windir%"Microsoft.NETassembly echo === Copying from Visual Studio 2010 install folder... copy %vs2010%Common7IDEmstest* "%targetfolder%" copy %vs2010%Common7IDEPrivateAssembliesMicrosoft.VisualStudio.Quality* "%targetfolder%" copy %vs2010%Common7IDEPublicAssembliesMicrosoft.VisualStudio.QualityTools.CodedUITestFramework* "%targetfolder%" echo === Copying from %gac1%... pushd "%gac1%" dir /s /b *.dll | findstr QualityTools | findstr 10.0.0.0 > %here%tmp.filelist popd for /F "tokens=*" %%f in (tmp.filelist) DO copy "%%f" "%targetfolder%" echo === Copying from %gac2%... pushd "%gac2%" dir /s /b *.dll | findstr QualityTools | findstr 10.0.0.0 > %here%tmp.filelist popd for /F "tokens=*" %%f in (tmp.filelist) DO copy "%%f" "%targetfolder%" del tmp.filelist echo === Exporting registry keys... regedit.exe /e %targetfolder%mstest.reg HKEY_LOCAL_MACHINESOFTWAREWow6432NodeMicrosoftVisualStudio10.0EnterpriseToolsQualityToolsTestTypes echo === Done. Check output for errors! exit /b 0
2. 准备跑test case需要的文件:我把它们放在了C:UsersusernameDesktopmstestCommandLine est文件夹里,如下图所示。注意下图里的TestResults为自己新建的文件夹,run case时会用到,用于存储test result。现在,要准备的文件都放在了C:UsersusernameDesktopmstestCommandLine里
3. 在目标机器上安装.NET Framework 4.0
4. 把C:UsersusernameDesktopmstestCommandLine文件夹复制到目标机器上,假设复制到目标机器的桌面上
5. 在目标机器上,运行C:UsersusernameDesktopmstestCommandLinemstest这个文件夹里的mstest.reg(双击即可)
6.在目标机器上,Run->cmd, 回车,进入mstest.exe所在的文件夹,然后运行下面的命令:
mstest /noisolation /testcontainer:C:Users<username>Desktopmstest estTestProject1.dll /resultsfile:C:Users<username>Desktopmstest estTestResults esult.trx
7. 运行结果如下图所示:
参考:
http://mindinthewater.blogspot.com/2008/11/executing-visual-studio-unit-tests.html
http://mindinthewater.blogspot.com/2011/02/executing-visual-studio-2010-unit-tests.html