vote up 0 vote down star

I am running NUnit with the project named AssemblyTest.nunit. The test calls another assembly which uses the log4net assembly. This is using nunit version 2.4.3 with the .net 2.0 framework.

In TestFixtureSetup I am calling log4net.Config.XmlConfigurator.Configure( ) and am getting the following error:

System.Configuration.ConfigurationErrorsException: Configuration system failed to initialize ---> System.Configuration.ConfigurationErrorsException: Unrecognized configuration section log4net. (C:\path\to\assembly.dll.config line 7)

Is there a way to fix this without renaming the config file to 'AssemblyTest.config'?

flag
I'm not familiar with .NET but there is nothing in the error that implies to me at least that this has anything to do with the name of the config file. It looks to me more like there is a problem with line 7 <i>in</i> your config file. – TomC Oct 1 '08 at 21:34
Yeah, that's why I asked the question. The config file line works with the file named by the nunit project name and exactly the same text. Thanks for the point. – Code Bytes Oct 2 '08 at 19:59

1 Answer

vote up 1 vote down check

Create a separate config file for log4net with root element log4net.

In TestFixtureSetup create a FileInfo object for this config file and give it as argument to log4net.Config.XmlConfigurator.Configure( ).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.