This is an automated email from the ASF dual-hosted git repository.

freeandnil pushed a commit to branch Feature/225-XmlLayoutSchemaLog4JTest-3.x
in repository https://gitbox.apache.org/repos/asf/logging-log4net.git


The following commit(s) were added to 
refs/heads/Feature/225-XmlLayoutSchemaLog4JTest-3.x by this push:
     new 54ca512d Test for #225
54ca512d is described below

commit 54ca512dd784f6c30644ae488614de9002ef1980
Author: Jan Friedrich <[email protected]>
AuthorDate: Tue Feb 4 11:03:11 2025 +0100

    Test for #225
---
 .../Layout/XmlLayoutSchemaLog4jTest.cs             | 60 ++++++++++++++++++++++
 1 file changed, 60 insertions(+)

diff --git a/src/log4net.Tests/Layout/XmlLayoutSchemaLog4jTest.cs 
b/src/log4net.Tests/Layout/XmlLayoutSchemaLog4jTest.cs
new file mode 100644
index 00000000..6c9b5058
--- /dev/null
+++ b/src/log4net.Tests/Layout/XmlLayoutSchemaLog4jTest.cs
@@ -0,0 +1,60 @@
+#region Apache License
+//
+// Licensed to the Apache Software Foundation (ASF) under one or more 
+// contributor license agreements. See the NOTICE file distributed with
+// this work for additional information regarding copyright ownership. 
+// The ASF licenses this file to you under the Apache License, Version 2.0
+// (the "License"); you may not use this file except in compliance with 
+// the License. You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+//
+#endregion
+
+using System;
+
+using log4net.Config;
+using log4net.Layout;
+using log4net.Repository;
+using log4net.Tests.Appender;
+
+using NUnit.Framework;
+
+namespace log4net.Tests.Layout
+{
+  [TestFixture]
+  public class XmlLayoutSchemaLog4jTest
+  {
+    [Test]
+    public void LogExceptionTest()
+    {
+      XmlLayoutSchemaLog4J layout = new();
+      StringAppender stringAppender = new() { Layout = layout };
+
+      ILoggerRepository rep = 
LogManager.CreateRepository(Guid.NewGuid().ToString());
+      BasicConfigurator.Configure(rep, stringAppender);
+      ILog log1 = LogManager.GetLogger(rep.Name, "TestLogger");
+      Bar(42);
+
+      var x = stringAppender.GetString();
+
+      void Bar(int foo)
+      {
+        try
+        {
+          throw new TimeoutException();
+        }
+        catch (TimeoutException ex)
+        {
+          log1.Error(string.Format("Error {0}", foo), ex);
+        }
+      }
+    }
+  }
+}
\ No newline at end of file

Reply via email to