mirror of
https://github.com/aluxnimm/outlookcaldavsynchronizer.git
synced 2025-10-06 00:12:52 +02:00
21 lines
388 B
C#
21 lines
388 B
C#
![]() |
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();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|