我尝试在我的VS单元测试运行时将一些条目记录在日志文件(Log.Trace/Log.Debug)中。我还通过类的DeploymentItem属性将文件NLog.config复制到了外部目录。仍然没有创建我的日志文件。关于如何将条目记录在文件中的任何帮助,就像我们对普通Web应用程序所做的帮助一样。

最佳答案

我刚刚找到了解决此问题的方法:
将App.config文件添加到具有以下内容的单元测试项目中:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <configSections>
    <section name="nlog" type="NLog.Config.ConfigSectionHandler, NLog"/>
  </configSections>

  <nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

    <targets>
      <target name="debugLog" xsi:type="Console" />
    </targets>

    <rules>
      <logger name="*" minlevel="Debug" writeTo="debugLog"></logger>
    </rules>

  </nlog>

</configuration>

您可以将任何所需的配置作为NLog.config文件。

关于unit-testing - NLog与VS 2008单元测试,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1672998/

10-13 04:36