我一直试图让我的MBUnit测试套件在Team City上运行很多天,但没有成功。

我的解决方案没有问题。该程序与我的测试。在搜寻Gallio与Team City的整合之后,我尝试了多种方法使此事情正常运行,我想我很亲近,但需要帮助。

我已将gallio bin目录包括在我的存储库中,也包括在我的TC Server上。

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

生成器:MSBuild
生成文件路径:Myproject.msbuild
目标:RebuildSolution RunTests

这是我创建的Myproject.msbuild文件,该文件包含在Source Control主目录中:

<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”任务不支持“程序集”参数。验证参数是否存在于任务中,并且它是可设置的 public 实例属性

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

谢谢你的帮助

最佳答案

程序集属性已重命名为文件。
此处的文档:http://www.gallio.org/api/html/T_Gallio_MSBuildTasks_Gallio.htm

关于msbuild - 无法将Gallio MBUnit与Team City集成,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2607963/

10-11 00:15