Browse Source

Rename average filter tests

pull/2028/head
Brian Popow 4 years ago
parent
commit
9f322555a9
  1. 6
      tests/ImageSharp.Tests/Formats/Png/PngDecoderFilterTests.cs

6
tests/ImageSharp.Tests/Formats/Png/PngDecoderFilterTests.cs

@ -49,14 +49,14 @@ namespace SixLabors.ImageSharp.Tests.Formats.Png
} }
[Fact] [Fact]
public void AverageInverse_Works() => RunAverageFilterTest(); public void AverageFilter_Works() => RunAverageFilterTest();
#if SUPPORTS_RUNTIME_INTRINSICS #if SUPPORTS_RUNTIME_INTRINSICS
[Fact] [Fact]
public void AverageInverse_WithHardwareIntrinsics_Works() => FeatureTestRunner.RunWithHwIntrinsicsFeature(RunAverageFilterTest, HwIntrinsics.AllowAll); public void AverageFilter_WithHardwareIntrinsics_Works() => FeatureTestRunner.RunWithHwIntrinsicsFeature(RunAverageFilterTest, HwIntrinsics.AllowAll);
[Fact] [Fact]
public void AverageInverse_WithoutHardwareIntrinsics_Works() => FeatureTestRunner.RunWithHwIntrinsicsFeature(RunAverageFilterTest, HwIntrinsics.DisableHWIntrinsic); public void AverageFilter_WithoutHardwareIntrinsics_Works() => FeatureTestRunner.RunWithHwIntrinsicsFeature(RunAverageFilterTest, HwIntrinsics.DisableHWIntrinsic);
#endif #endif
} }
} }

Loading…
Cancel
Save