diff --git a/tests/ImageSharp.Tests/Processing/Transforms/EntropyCropTest.cs b/tests/ImageSharp.Tests/Processing/Transforms/EntropyCropTest.cs
new file mode 100644
index 000000000..5b1dd0442
--- /dev/null
+++ b/tests/ImageSharp.Tests/Processing/Transforms/EntropyCropTest.cs
@@ -0,0 +1,33 @@
+//
+// Copyright (c) James Jackson-South and contributors.
+// Licensed under the Apache License, Version 2.0.
+//
+
+namespace ImageSharp.Tests.Processing.Transforms
+{
+ using ImageSharp.PixelFormats;
+
+ using Xunit;
+
+ public class EntropyCropTest : FileTestBase
+ {
+ public static readonly TheoryData EntropyCropValues
+ = new TheoryData
+ {
+ .25F,
+ .75F
+ };
+
+ [Theory]
+ [WithFileCollection(nameof(DefaultFiles), nameof(EntropyCropValues), StandardPixelType)]
+ public void ImageShouldEntropyCrop(TestImageProvider provider, float value)
+ where TPixel : struct, IPixel
+ {
+ using (Image image = provider.GetImage())
+ {
+ image.EntropyCrop(value)
+ .DebugSave(provider, value, Extensions.Bmp);
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/tests/ImageSharp.Tests/Processors/Filters/EntropyCropTest.cs b/tests/ImageSharp.Tests/Processors/Filters/EntropyCropTest.cs
deleted file mode 100644
index 710e23e37..000000000
--- a/tests/ImageSharp.Tests/Processors/Filters/EntropyCropTest.cs
+++ /dev/null
@@ -1,40 +0,0 @@
-//
-// Copyright (c) James Jackson-South and contributors.
-// Licensed under the Apache License, Version 2.0.
-//
-
-namespace ImageSharp.Tests
-{
- using System.IO;
-
- using ImageSharp.PixelFormats;
-
- using Xunit;
-
- public class EntropyCropTest : FileTestBase
- {
- public static readonly TheoryData EntropyCropValues
- = new TheoryData
- {
- .25f ,
- .75f ,
- };
-
- [Theory]
- [MemberData(nameof(EntropyCropValues))]
- public void ImageShouldApplyEntropyCropSampler(float value)
- {
- string path = this.CreateOutputDirectory("EntropyCrop");
-
- foreach (TestFile file in Files)
- {
- string filename = file.GetFileName(value);
- using (Image image = file.CreateImage())
- using (FileStream output = File.OpenWrite($"{path}/{filename}"))
- {
- image.EntropyCrop(value).Save(output);
- }
- }
- }
- }
-}
\ No newline at end of file