File tree 2 files changed +26
-0
lines changed
2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change 35
35
</ItemGroup >
36
36
37
37
<ItemGroup >
38
+ <PackageReference Include =" BenchmarkDotNet" />
38
39
<PackageReference Include =" Magick.NET-Q16-AnyCPU" />
39
40
<PackageReference Include =" Microsoft.DotNet.RemoteExecutor" />
40
41
<PackageReference Include =" Microsoft.DotNet.XUnitExtensions" />
Original file line number Diff line number Diff line change
1
+ // Copyright (c) Six Labors.
2
+ // Licensed under the Apache License, Version 2.0.
3
+
4
+ using BenchmarkDotNet . Environments ;
5
+ using SixLabors . ImageSharp . Tests . TestUtilities ;
6
+ using Xunit . Abstractions ;
7
+ using Xunit . Sdk ;
8
+
9
+ [ assembly: Xunit . TestFramework ( SixLaborsXunitTestFramework . Type , SixLaborsXunitTestFramework . Assembly ) ]
10
+
11
+ namespace SixLabors . ImageSharp . Tests . TestUtilities
12
+ {
13
+ public class SixLaborsXunitTestFramework : XunitTestFramework
14
+ {
15
+ public const string Type = "SixLabors.ImageSharp.Tests.TestUtilities.SixLaborsXunitTestFramework" ;
16
+ public const string Assembly = "SixLabors.ImageSharp.Tests" ;
17
+
18
+ public SixLaborsXunitTestFramework ( IMessageSink messageSink )
19
+ : base ( messageSink )
20
+ {
21
+ var message = new DiagnosticMessage ( HostEnvironmentInfo . GetInformation ( ) ) ;
22
+ messageSink . OnMessage ( message ) ;
23
+ }
24
+ }
25
+ }
You can’t perform that action at this time.
0 commit comments