0
我已經設置了一個.nunit文件來指定本地和遠程測試套件App.config。這裏是我的代碼:.nunit文件忽略configfile參數
<NUnitProject>
<Settings activeconfig="local"/>
<Config name="local" configfile="App.config">
<assembly path="bin\Debug\Proj.dll"/>
</Config>
<Config name="remote" configfile="App.Remote.config">
<assembly path="bin\Debug\Proj.dll"/>
</Config>
</NUnitProject>
現在,當我在命令行中運行以下命令
"nunit3-console" "test_runner.nunit" /config:remote
仍在運行關閉App.config中的,而不是App.Remote.config文件我在Config模塊中指定了..我在這裏錯過了什麼嗎?我需要在App.config中有某種參考嗎?
當您運行時,您想要在bin \ Debug目錄中使用的配置文件? – Charlie
@Charlie不,我把.nunit文件和App.Remote.config文件放在同一個目錄下。它們都位於項目根目錄中 – Tree55Topz