mirror of https://github.com/SixLabors/ImageSharp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
492 B
18 lines
492 B
// Copyright (c) Six Labors.
|
|
// Licensed under the Six Labors Split License.
|
|
|
|
using BenchmarkDotNet.Environments;
|
|
using SixLabors.ImageSharp.Tests.TestUtilities;
|
|
using Xunit.v3;
|
|
|
|
[assembly: Xunit.TestFramework(typeof(SixLaborsXunitTestFramework))]
|
|
|
|
namespace SixLabors.ImageSharp.Tests.TestUtilities;
|
|
|
|
public class SixLaborsXunitTestFramework : XunitTestFramework
|
|
{
|
|
public SixLaborsXunitTestFramework()
|
|
{
|
|
Console.Error.WriteLine(HostEnvironmentInfo.GetInformation());
|
|
}
|
|
}
|
|
|