|
|
@ -6,13 +6,12 @@ using SixLabors.ImageSharp.Processing; |
|
|
using SixLabors.Primitives; |
|
|
using SixLabors.Primitives; |
|
|
using Xunit; |
|
|
using Xunit; |
|
|
using Xunit.Abstractions; |
|
|
using Xunit.Abstractions; |
|
|
|
|
|
using SixLabors.ImageSharp.Helpers; |
|
|
// ReSharper disable InconsistentNaming
|
|
|
// ReSharper disable InconsistentNaming
|
|
|
|
|
|
|
|
|
namespace SixLabors.ImageSharp.Tests.Processing.Transforms |
|
|
namespace SixLabors.ImageSharp.Tests.Processing.Transforms |
|
|
{ |
|
|
{ |
|
|
using SixLabors.ImageSharp.Helpers; |
|
|
public class AffineTransformTests |
|
|
|
|
|
|
|
|
public class TransformTests |
|
|
|
|
|
{ |
|
|
{ |
|
|
private readonly ITestOutputHelper Output; |
|
|
private readonly ITestOutputHelper Output; |
|
|
|
|
|
|
|
|
@ -63,7 +62,7 @@ namespace SixLabors.ImageSharp.Tests.Processing.Transforms |
|
|
nameof(KnownResamplers.Lanczos8), |
|
|
nameof(KnownResamplers.Lanczos8), |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
public TransformTests(ITestOutputHelper output) |
|
|
public AffineTransformTests(ITestOutputHelper output) |
|
|
{ |
|
|
{ |
|
|
this.Output = output; |
|
|
this.Output = output; |
|
|
} |
|
|
} |
|
|
|