我有一個Nant構建文件,它在編譯dll後執行NUnit。我使用CruiseControl中的任務執行NAnt構建文件。所以NAnt運行的測試不是CruiseControl。CruiseControl.NET視圖NUnit xml測試結果當Nant構建文件執行NUnit
如何配置它,以便CruiseControl Web儀表板可用於查看NUnit輸出?
這個固定:
<publishers>
<merge>
<files>
<file>build\*.test-result.xml</file>
</files>
</merge>
<xmllogger />
</publishers>
我在服務器日誌中看到它合併文件,但如果我在webdashboard中選擇NUnit Details鏈接,仍然看不到測試運行。 – 2008-10-02 12:57:30
重要的是在ccnet.config中的元素內的* 元素之後放置 *。 –
2008-10-02 13:15:57