diff --git a/tests/ImageSharp.Tests/Drawing/FillEllipticGradientBrushTest.cs b/tests/ImageSharp.Tests/Drawing/FillEllipticGradientBrushTest.cs index 2311244fa..7cf7775ce 100644 --- a/tests/ImageSharp.Tests/Drawing/FillEllipticGradientBrushTest.cs +++ b/tests/ImageSharp.Tests/Drawing/FillEllipticGradientBrushTest.cs @@ -13,7 +13,7 @@ using Xunit; namespace SixLabors.ImageSharp.Tests.Drawing { [GroupOutput("Drawing/GradientBrushes")] - public class FillEllipticGradientBrushTests : FileTestBase + public class FillEllipticGradientBrushTests { [Theory] [WithBlankImages(10, 10, PixelTypes.Rgba32)] diff --git a/tests/ImageSharp.Tests/Drawing/FillRadialGradientBrushTests.cs b/tests/ImageSharp.Tests/Drawing/FillRadialGradientBrushTests.cs index 60171e477..5388391cd 100644 --- a/tests/ImageSharp.Tests/Drawing/FillRadialGradientBrushTests.cs +++ b/tests/ImageSharp.Tests/Drawing/FillRadialGradientBrushTests.cs @@ -7,11 +7,12 @@ using Xunit; namespace SixLabors.ImageSharp.Tests.Drawing { - public class FillRadialGradientBrushTests : FileTestBase + [GroupOutput("Drawing/GradientBrushes")] + public class FillRadialGradientBrushTests { [Theory] [WithBlankImages(200, 200, PixelTypes.Rgba32)] - public void RadialGradientBrushWithEqualColorsReturnsUnicolorImage( + public void WithEqualColorsReturnsUnicolorImage( TestImageProvider provider) where TPixel : struct, IPixel { @@ -40,7 +41,7 @@ namespace SixLabors.ImageSharp.Tests.Drawing [WithBlankImages(200, 200, PixelTypes.Rgba32, 100, 0)] [WithBlankImages(200, 200, PixelTypes.Rgba32, 0, 100)] [WithBlankImages(200, 200, PixelTypes.Rgba32, -40, 100)] - public void RadialGradientBrushWithDifferentCentersReturnsImage( + public void WithDifferentCentersReturnsImage( TestImageProvider provider, int centerX, int centerY) @@ -57,7 +58,7 @@ namespace SixLabors.ImageSharp.Tests.Drawing new ColorStop(1, NamedColors.Yellow)); image.Mutate(x => x.Fill(brush)); - image.DebugSave(provider); + image.DebugSave(provider, $"center{centerX:D3},{centerY:D3}"); image.CompareToReferenceOutput(provider); } }