mirror of https://github.com/SixLabors/ImageSharp
2 changed files with 26 additions and 0 deletions
@ -0,0 +1,25 @@ |
|||
// Copyright (c) Six Labors.
|
|||
// Licensed under the Apache License, Version 2.0.
|
|||
|
|||
using BenchmarkDotNet.Environments; |
|||
using SixLabors.ImageSharp.Tests.TestUtilities; |
|||
using Xunit.Abstractions; |
|||
using Xunit.Sdk; |
|||
|
|||
[assembly: Xunit.TestFramework(SixLaborsXunitTestFramework.Type, SixLaborsXunitTestFramework.Assembly)] |
|||
|
|||
namespace SixLabors.ImageSharp.Tests.TestUtilities |
|||
{ |
|||
public class SixLaborsXunitTestFramework : XunitTestFramework |
|||
{ |
|||
public const string Type = "SixLabors.ImageSharp.Tests.TestUtilities.SixLaborsXunitTestFramework"; |
|||
public const string Assembly = "SixLabors.ImageSharp.Tests"; |
|||
|
|||
public SixLaborsXunitTestFramework(IMessageSink messageSink) |
|||
: base(messageSink) |
|||
{ |
|||
var message = new DiagnosticMessage(HostEnvironmentInfo.GetInformation()); |
|||
messageSink.OnMessage(message); |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue