Right, you'll need VS Pro or above installed in order to have mstest.exe on the build server to be able to run tests.
Buck From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Primrose, Rory Sent: Tuesday, August 05, 2008 6:25 PM To: [email protected] Subject: RE: [OzTFS] RE: VS edition to install on TFS 2008 build server [SEC=PERSONAL] It shouldn't work without MSTest.exe. From what I can tell, the TestContainer element resolves into the TestContainers property on Microsoft.Build.Tasks.TestToolsTask, Microsoft.VisualStudio.QualityTools.MSBuildTasks, Version=9.0.0.0. This type has a ToolName property that is used to execute the task for a tool. protected override string<http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://mscorlib:2.0.0.0:b77a5c561934e089/System.String> ToolName<http://www.aisto.com/roeder/dotnet/Default.aspx?Target=code://Microsoft.VisualStudio.QualityTools.MSBuildTasks:9.0.0.0:b03f5f7f11d50a3a/Microsoft.Build.Tasks.TestToolsTask/property:ToolName:String> { get { return "MSTest.exe"; } } [cid:[email protected]] RORY PRIMROSE SOFTWARE DEVELOPER INFORMATION SERVICES Tel +61(0) 2 62036720 Ext 156720 www.afp.gov.au<http://www.afp.gov.au> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David Kean Sent: Wednesday, 6 August 2008 3:34 AM To: [email protected] Subject: [OzTFS] RE: VS edition to install on TFS 2008 build server > If you specify the build to run "Test Lists" (*.vsmdi files) - these can only > be authored/run in VS Team Test. So therefore it is required. In 2008, I could be wrong, but I was pretty sure that both Team Dev and Pro allow editing of these. > To run unit tests on a Team Build server without the VS Team Test SKU, you > have to use <TestContainers> and specify a pattern to match. Is this going to work without MSTest (installed by Pro and above) on the box? From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Grant Holliday Sent: Monday, August 04, 2008 11:46 PM To: [email protected] Subject: [OzTFS] RE: VS edition to install on TFS 2008 build server If you specify the build to run "Test Lists" (*.vsmdi files) - these can only be authored/run in VS Team Test. So therefore it is required. However, in 2008, Unit Testing was pushed into the VS Team Dev SKU. To run unit tests on a Team Build server without the VS Team Test SKU, you have to use <TestContainers> and specify a pattern to match. We use %2a instead of '*', so that it doesn't get expanded when it resolves the correct paths. <ItemGroup> <TestContainer Include="$(OutDir)\%2a.Tests.dll" /> </ItemGroup> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Damian Edwards Sent: Monday, August 04, 2008 10:43 PM To: [email protected] Subject: [OzTFS] VS edition to install on TFS 2008 build server Hi all, The TFS 2008 install guide says that in order to get unit tests running as part of the build you must have VSTS test edition installed on the build server. Surely VSTS developer's edition would work too, yes? Regards, Damian Edwards Microsoft MVP<https://mvp.support.microsoft.com/profile/Damian.Edwards> | ASP/ASP.NET Readify | Senior Consultant Suite 206 Nolan Tower | 29 Rakaia Way | Docklands | VIC 3008 | Australia M: 0448 545 868 | E: [EMAIL PROTECTED]<mailto:[EMAIL PROTECTED]> | C: [EMAIL PROTECTED]<sip:[EMAIL PROTECTED]> | W: www.readify.net<http://www.readify.net/> ________________________________ The content of this e-mail, including any attachments is a confidential communication between Readify Pty Ltd and the intended addressee and is for the sole use of that intended addressee. If you are not the intended addressee, any use, interference with, disclosure or copying of this material is unauthorized and prohibited. If you have received this e-mail in error please contact the sender immediately and then delete the message and any attachment(s). OzTFS.com - to unsubscribe from this list, send a message back to the list with 'unsubscribe' as the subject. View the web archives at http://www.mail-archive.com/[email protected]/ Powered by mailenable.com, supported by www.readify.net OzTFS.com - to unsubscribe from this list, send a message back to the list with 'unsubscribe' as the subject. View the web archives at http://www.mail-archive.com/[email protected]/ Powered by mailenable.com, supported by www.readify.net OzTFS.com - to unsubscribe from this list, send a message back to the list with 'unsubscribe' as the subject. View the web archives at http://www.mail-archive.com/[email protected]/ Powered by mailenable.com, supported by www.readify.net ********************************************************************** WARNING This email message and any attached files may contain information that is confidential and subject of legal privilege intended only for use by the individual or entity to whom they are addressed. If you are not the intended recipient or the person responsible for delivering the message to the intended recipient be advised that you have received this message in error and that any use, copying, circulation, forwarding, printing or publication of this message or attached files is strictly forbidden, as is the disclosure of the information contained therein. If you have received this message in error, please notify the sender immediately and delete it from your inbox. AFP Web site: http://www.afp.gov.au ********************************************************************** OzTFS.com - to unsubscribe from this list, send a message back to the list with 'unsubscribe' as the subject. View the web archives at http://www.mail-archive.com/[email protected]/ Powered by mailenable.com, supported by www.readify.net OzTFS.com - to unsubscribe from this list, send a message back to the list with 'unsubscribe' as the subject. View the web archives at http://www.mail-archive.com/[email protected]/ Powered by mailenable.com, supported by www.readify.net
<<inline: image001.gif>>
