23 lines
478 B
C#
23 lines
478 B
C#
using NUnit.Framework;
|
|
using Speckle.Core.Logging;
|
|
|
|
namespace Objects.Tests.Unit;
|
|
|
|
[SetUpFixture]
|
|
public class NUnitFixtures
|
|
{
|
|
[OneTimeSetUp]
|
|
public void RunBeforeAnyTests()
|
|
{
|
|
SpeckleLog.Initialize(
|
|
"ObjectsTests",
|
|
"Testing",
|
|
new SpeckleLogConfiguration(logToConsole: false, logToFile: false, logToSeq: false)
|
|
);
|
|
SpeckleLog.Logger.Information("Initialized logger for testing");
|
|
}
|
|
|
|
[OneTimeTearDown]
|
|
public void RunAfterAnyTests() { }
|
|
}
|