NLog与VS 2008单元测试

时间:2009-11-04 10:43:16

标签: unit-testing file nlog

我正在尝试在我的VS单元测试运行时记录日志文件(Log.Trace / Log.Debug)中的一些条目。我还通过类的DeploymentItem属性将文件NLog.config复制到out目录。我的日志文件仍未创建。关于我们如何在文件中记录条目的任何帮助都与我们正常的Web应用程序相同。

2 个答案:

答案 0 :(得分:12)

我刚刚找到了解决此问题的方法: 使用以下内容将App.config文件添加到yout unit test project:

<?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文件进行任何您希望的配置。

答案 1 :(得分:0)

不幸的是,这是当时唯一的XML解决方案。不过,这不仅仅是关于单元测试。 NLog.config不适用于任何控制台应用程序。

不知道是设计还是监督。无论如何,我不会说将NLog.config移动到App.config部分是任何令人满意的方式= /

也许值得注意的是,有可能直接从代码配置nlog,在某些情况下可能会有所帮助。 人们也很高兴找到nlog调试选项,它将记录处理配置文件,注册目标等的整个过程......

要打开它,只需将internalLogFile和internalLogLevel属性添加到nlog元素:

<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" internalLogFile="C:/logs/nlog.txt" internalLogLevel="Debug">

或来自代码:

    InternalLogger.LogFile = @"c:\logs\nlog.txt";

    InternalLogger.LogLevel = LogLevel.Trace;