1
0
mirror of https://github.com/aluxnimm/outlookcaldavsynchronizer.git synced 2025-10-06 00:12:52 +02:00
Files

21 lines
388 B
C#
Raw Permalink Normal View History

2018-12-02 15:32:16 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using log4net.Config;
using NUnit.Framework;
namespace CalDavSynchronizer.IntegrationTests
{
[SetUpFixture]
public class SetupFixture
{
[OneTimeSetUp]
public void SetUp()
{
XmlConfigurator.Configure();
}
}
}