无法将Gallio MBUnit与Team City集成

时间:2010-04-09 13:49:27

标签: msbuild teamcity mbunit gallio

我一直试图让我的MBUnit测试套件在Team City上工作很多天而没有任何成功。

我的解决方案没有问题。该程序是我的测试。在谷歌搜索Gallio与Team City的整合后,我尝试了很多方法让这件事情发挥作用,我认为我很接近但需要帮助。

我已将gallio bin目录包含在我的存储库和TC服务器上。

这是我在Team City中设置的构建运行器:

构建跑步者:MSBuild 构建文件路径:Myproject.msbuild 目标:RebuildSolution RunTests

这是我创建并包含在Source控制主目录中的Myproject.msbuild文件:

<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!-- This is needed by MSBuild to locate the Gallio task -->
<UsingTask AssemblyFile="C:\Gallio\bin\Gallio.MSBuildTasks.dll" TaskName="Gallio" />
<!-- Specify the tests assemblies -->
<ItemGroup>
  <TestAssemblies Include="C:\_CBL\CBL\CoderForTraders\Source\trunk\UnitTest\DomainModel.Tests\bin\Debug\CBL.CoderForTraders.DomainModel.Tests.dll" /> 
</ItemGroup>
<Target Name="RunTests">
  <Gallio IgnoreFailures="false" Assemblies="@(TestAssemblies)" RunnerExtensions="TeamCityExtension,Gallio.TeamCityIntegration">
   <!-- This tells MSBuild to store the output value of the task's ExitCode property into the project's ExitCode property -->
   <Output TaskParameter="ExitCode" PropertyName="ExitCode"/>
  </Gallio>
  <Error Text="Tests execution failed" Condition="'$(ExitCode)' != 0" />
</Target>
<Target Name="RebuildSolution">
  <Message Text="Starting to Build"/>
  <MSBuild Projects="CoderForTraders.sln" 
           Properties="Configuration=Debug" 
           Targets="Rebuild" />
</Target>
</Project>

以下是Team City显示的错误:

错误MSB4064:“Gallio”任务不支持“Assemblies”参数。验证任务上是否存在参数,它是可设置的公共实例属性

错误MSB4063:无法使用输入参数初始化“Gallio”任务。

感谢您的帮助

1 个答案:

答案 0 :(得分:3)

Assemblies属性已重命名为Files。 这里的文档:http://www.gallio.org/api/html/T_Gallio_MSBuildTasks_Gallio.htm