开发者

cruisecontrol mstest problem wenn tests fail

i use MSTest with CruiseControl. When I run my compile and tests and all tests pass then I can see the mstest results in my dashboard.

for example: 5 tests ran. 5 tests passed. 0 tests failed.

when tests f开发者_Go百科ail I would expect to see something like this: 5 tests ran. 1 failed. 4 passed.

but if one test fails I get this: 0 tests ran. 0 passed. 0 failed.

It looks like cruisecontrol has a display problem if tests fail.

bye bembi


solved it. i had to move the file merge block out of the task block and into a publishers block:

<project>
  ...
  <publishers>
    <merge>
      <files>          
        <file>C:\cc\mstestResult.trx</file>
      </files>
    </merge>
    <xmllogger />
  </publishers>      
</project>
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜