Browse Source

redundant usings (#960)

af/merge-core
Simon Cropp 7 years ago
committed by James Jackson-South
parent
commit
2c04d6b036
  1. 1
      src/ImageSharp.Drawing/Primitives/ShapeRegion.cs
  2. 2
      src/ImageSharp.Drawing/Processing/Brushes.cs
  3. 2
      src/ImageSharp.Drawing/Processing/ColorStop.cs
  4. 1
      src/ImageSharp.Drawing/Processing/Extensions/DrawBezierExtensions.cs
  5. 1
      src/ImageSharp.Drawing/Processing/Extensions/DrawLineExtensions.cs
  6. 1
      src/ImageSharp.Drawing/Processing/Extensions/DrawPathCollectionExtensions.cs
  7. 1
      src/ImageSharp.Drawing/Processing/Extensions/DrawPathExtensions.cs
  8. 1
      src/ImageSharp.Drawing/Processing/Extensions/DrawPolygonExtensions.cs
  9. 1
      src/ImageSharp.Drawing/Processing/Extensions/DrawRectangleExtensions.cs
  10. 1
      src/ImageSharp.Drawing/Processing/Extensions/DrawTextExtensions.cs
  11. 2
      src/ImageSharp.Drawing/Processing/Extensions/FillPathBuilderExtensions.cs
  12. 1
      src/ImageSharp.Drawing/Processing/Extensions/FillPathCollectionExtensions.cs
  13. 1
      src/ImageSharp.Drawing/Processing/Extensions/FillPolygonExtensions.cs
  14. 1
      src/ImageSharp.Drawing/Processing/Extensions/FillRectangleExtensions.cs
  15. 2
      src/ImageSharp.Drawing/Processing/IPen.cs
  16. 1
      src/ImageSharp.Drawing/Processing/ImageBrush.cs
  17. 1
      src/ImageSharp.Drawing/Processing/Pen.cs
  18. 2
      src/ImageSharp.Drawing/Processing/Pens.cs
  19. 5
      src/ImageSharp.Drawing/Processing/Processors/Drawing/DrawImageProcessor.cs
  20. 3
      src/ImageSharp.Drawing/Processing/Processors/Drawing/FillProcessor.cs
  21. 1
      src/ImageSharp.Drawing/Processing/Processors/Drawing/FillRegionProcessor.cs
  22. 1
      tests/ImageSharp.Benchmarks/General/BasicMath/ClampFloat.cs
  23. 1
      tests/ImageSharp.Benchmarks/General/Vectorization/VectorFetching.cs
  24. 2
      tests/ImageSharp.Sandbox46/Program.cs
  25. 4
      tests/ImageSharp.Tests/Advanced/AdvancedImageExtensionsTests.cs
  26. 1
      tests/ImageSharp.Tests/BaseImageOperationsExtensionTest.cs
  27. 1
      tests/ImageSharp.Tests/Color/ColorTests.cs
  28. 1
      tests/ImageSharp.Tests/Drawing/DrawBezierTests.cs
  29. 1
      tests/ImageSharp.Tests/Drawing/DrawComplexPolygonTests.cs
  30. 2
      tests/ImageSharp.Tests/Drawing/DrawImageTests.cs
  31. 1
      tests/ImageSharp.Tests/Drawing/DrawLinesTests.cs
  32. 1
      tests/ImageSharp.Tests/Drawing/DrawPathTests.cs
  33. 10
      tests/ImageSharp.Tests/Drawing/DrawPolygonTests.cs
  34. 1
      tests/ImageSharp.Tests/Drawing/FillComplexPolygonTests.cs
  35. 5
      tests/ImageSharp.Tests/Drawing/FillImageBrushTests.cs
  36. 1
      tests/ImageSharp.Tests/Drawing/FillPolygonTests.cs
  37. 2
      tests/ImageSharp.Tests/Drawing/SolidFillBlendedShapesTests.cs
  38. 3
      tests/ImageSharp.Tests/Formats/Png/PngChunkTypeTests.cs
  39. 2
      tests/ImageSharp.Tests/Formats/Png/PngSmokeTests.cs
  40. 1
      tests/ImageSharp.Tests/Helpers/GuardTests.cs
  41. 1
      tests/ImageSharp.Tests/Image/ImageFrameCollectionTests.NonGeneric.cs
  42. 2
      tests/ImageSharp.Tests/Image/ImageFrameCollectionTests.cs
  43. 5
      tests/ImageSharp.Tests/Image/ImageSaveTests.cs
  44. 3
      tests/ImageSharp.Tests/Image/ImageTests.DetectFormat.cs
  45. 1
      tests/ImageSharp.Tests/Image/ImageTests.Load_FromBytes_UseGlobalConfiguration.cs
  46. 2
      tests/ImageSharp.Tests/Image/ImageTests.Load_FromStream_ThrowsRightException.cs
  47. 2
      tests/ImageSharp.Tests/MetaData/Profiles/ICC/DataWriter/IccDataWriter.MatrixTests.cs
  48. 1
      tests/ImageSharp.Tests/PixelFormats/Bgra32Tests.cs
  49. 2
      tests/ImageSharp.Tests/PixelFormats/PixelBlenders/PorterDuffFunctionsTests_TPixel.cs
  50. 6
      tests/ImageSharp.Tests/PixelFormats/PixelOperations/PixelOperationsTests.Gray16OperationsTests.cs
  51. 5
      tests/ImageSharp.Tests/PixelFormats/PixelOperations/PixelOperationsTests.Gray8OperationsTests.cs
  52. 1
      tests/ImageSharp.Tests/PixelFormats/PixelOperations/PixelOperationsTests.cs
  53. 3
      tests/ImageSharp.Tests/PixelFormats/PixelOperationsTests.Blender.cs
  54. 1
      tests/ImageSharp.Tests/PixelFormats/Rgba32Tests.cs
  55. 1
      tests/ImageSharp.Tests/Processing/Binarization/BinaryDitherTest.cs
  56. 1
      tests/ImageSharp.Tests/Processing/Binarization/BinaryThresholdTest.cs
  57. 1
      tests/ImageSharp.Tests/Processing/Convolution/BoxBlurTest.cs
  58. 5
      tests/ImageSharp.Tests/Processing/Convolution/DetectEdgesTest.cs
  59. 1
      tests/ImageSharp.Tests/Processing/Convolution/GaussianBlurTest.cs
  60. 1
      tests/ImageSharp.Tests/Processing/Convolution/GaussianSharpenTest.cs
  61. 1
      tests/ImageSharp.Tests/Processing/Dithering/DitherTest.cs
  62. 1
      tests/ImageSharp.Tests/Processing/Effects/BackgroundColorTest.cs
  63. 1
      tests/ImageSharp.Tests/Processing/Effects/OilPaintTest.cs
  64. 1
      tests/ImageSharp.Tests/Processing/Effects/PixelateTest.cs
  65. 1
      tests/ImageSharp.Tests/Processing/Filters/BlackWhiteTest.cs
  66. 1
      tests/ImageSharp.Tests/Processing/Filters/BrightnessTest.cs
  67. 1
      tests/ImageSharp.Tests/Processing/Filters/ColorBlindnessTest.cs
  68. 2
      tests/ImageSharp.Tests/Processing/Filters/ContrastTest.cs
  69. 3
      tests/ImageSharp.Tests/Processing/Filters/FilterTest.cs
  70. 1
      tests/ImageSharp.Tests/Processing/Filters/GrayscaleTest.cs
  71. 1
      tests/ImageSharp.Tests/Processing/Filters/HueTest.cs
  72. 1
      tests/ImageSharp.Tests/Processing/Filters/InvertTest.cs
  73. 1
      tests/ImageSharp.Tests/Processing/Filters/KodachromeTest.cs
  74. 4
      tests/ImageSharp.Tests/Processing/Filters/LomographTest.cs
  75. 1
      tests/ImageSharp.Tests/Processing/Filters/OpacityTest.cs
  76. 1
      tests/ImageSharp.Tests/Processing/Filters/PolaroidTest.cs
  77. 1
      tests/ImageSharp.Tests/Processing/Filters/SaturateTest.cs
  78. 1
      tests/ImageSharp.Tests/Processing/Filters/SepiaTest.cs
  79. 2
      tests/ImageSharp.Tests/Processing/Overlays/GlowTest.cs
  80. 1
      tests/ImageSharp.Tests/Processing/Overlays/VignetteTest.cs
  81. 4
      tests/ImageSharp.Tests/Processing/Processors/Convolution/GaussianBlurTest.cs
  82. 3
      tests/ImageSharp.Tests/Processing/Processors/Convolution/GaussianSharpenTest.cs
  83. 2
      tests/ImageSharp.Tests/Processing/Processors/Dithering/DitherTests.cs
  84. 2
      tests/ImageSharp.Tests/Processing/Processors/Effects/BackgroundColorTest.cs
  85. 2
      tests/ImageSharp.Tests/Processing/Processors/Effects/OilPaintTest.cs
  86. 2
      tests/ImageSharp.Tests/Processing/Processors/Effects/PixelateTest.cs
  87. 2
      tests/ImageSharp.Tests/Processing/Processors/Filters/GrayscaleTest.cs
  88. 4
      tests/ImageSharp.Tests/Processing/Processors/Overlays/GlowTest.cs
  89. 2
      tests/ImageSharp.Tests/Processing/Processors/Overlays/OverlayTestBase.cs
  90. 1
      tests/ImageSharp.Tests/Processing/Processors/Quantization/PaletteQuantizerTests.cs
  91. 1
      tests/ImageSharp.Tests/Processing/Processors/Transforms/AutoOrientTests.cs
  92. 2
      tests/ImageSharp.Tests/Processing/Processors/Transforms/ResizeKernelMapTests.cs
  93. 1
      tests/ImageSharp.Tests/Processing/Processors/Transforms/ResizeTests.cs
  94. 2
      tests/ImageSharp.Tests/Processing/Processors/Transforms/RotateFlipTests.cs
  95. 2
      tests/ImageSharp.Tests/Processing/Transforms/AutoOrientTests.cs
  96. 2
      tests/ImageSharp.Tests/Processing/Transforms/CropTest.cs
  97. 1
      tests/ImageSharp.Tests/Processing/Transforms/EntropyCropTest.cs
  98. 4
      tests/ImageSharp.Tests/Processing/Transforms/FlipTests.cs
  99. 1
      tests/ImageSharp.Tests/Processing/Transforms/ResizeTests.cs
  100. 1
      tests/ImageSharp.Tests/Processing/Transforms/RotateFlipTests.cs

1
src/ImageSharp.Drawing/Primitives/ShapeRegion.cs

@ -5,7 +5,6 @@ using System;
using System.Buffers;
using SixLabors.ImageSharp.Memory;
using SixLabors.Memory;
using SixLabors.Primitives;
using SixLabors.Shapes;

2
src/ImageSharp.Drawing/Processing/Brushes.cs

@ -1,8 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
namespace SixLabors.ImageSharp.Processing
{
/// <summary>

2
src/ImageSharp.Drawing/Processing/ColorStop.cs

@ -3,8 +3,6 @@
using System.Diagnostics;
using SixLabors.ImageSharp.PixelFormats;
namespace SixLabors.ImageSharp.Processing
{
/// <summary>

1
src/ImageSharp.Drawing/Processing/Extensions/DrawBezierExtensions.cs

@ -1,7 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.Primitives;
using SixLabors.Shapes;

1
src/ImageSharp.Drawing/Processing/Extensions/DrawLineExtensions.cs

@ -1,7 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.Primitives;
using SixLabors.Shapes;

1
src/ImageSharp.Drawing/Processing/Extensions/DrawPathCollectionExtensions.cs

@ -1,7 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.Shapes;
namespace SixLabors.ImageSharp.Processing

1
src/ImageSharp.Drawing/Processing/Extensions/DrawPathExtensions.cs

@ -1,7 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Primitives;
using SixLabors.Shapes;

1
src/ImageSharp.Drawing/Processing/Extensions/DrawPolygonExtensions.cs

@ -1,7 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.Primitives;
using SixLabors.Shapes;

1
src/ImageSharp.Drawing/Processing/Extensions/DrawRectangleExtensions.cs

@ -1,7 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.Primitives;
using SixLabors.Shapes;

1
src/ImageSharp.Drawing/Processing/Extensions/DrawTextExtensions.cs

@ -2,7 +2,6 @@
// Licensed under the Apache License, Version 2.0.
using SixLabors.Fonts;
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing.Processors.Text;
using SixLabors.Primitives;

2
src/ImageSharp.Drawing/Processing/Extensions/FillPathBuilderExtensions.cs

@ -2,7 +2,7 @@
// Licensed under the Apache License, Version 2.0.
using System;
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.Shapes;
namespace SixLabors.ImageSharp.Processing

1
src/ImageSharp.Drawing/Processing/Extensions/FillPathCollectionExtensions.cs

@ -1,7 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.Shapes;
namespace SixLabors.ImageSharp.Processing

1
src/ImageSharp.Drawing/Processing/Extensions/FillPolygonExtensions.cs

@ -1,7 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.Primitives;
using SixLabors.Shapes;

1
src/ImageSharp.Drawing/Processing/Extensions/FillRectangleExtensions.cs

@ -1,7 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.Primitives;
using SixLabors.Shapes;

2
src/ImageSharp.Drawing/Processing/IPen.cs

@ -3,8 +3,6 @@
using System;
using SixLabors.ImageSharp.PixelFormats;
namespace SixLabors.ImageSharp.Processing
{
/// <summary>

1
src/ImageSharp.Drawing/Processing/ImageBrush.cs

@ -7,7 +7,6 @@ using System.Buffers;
using SixLabors.ImageSharp.Advanced;
using SixLabors.ImageSharp.Memory;
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.Memory;
using SixLabors.Primitives;
namespace SixLabors.ImageSharp.Processing

1
src/ImageSharp.Drawing/Processing/Pen.cs

@ -2,7 +2,6 @@
// Licensed under the Apache License, Version 2.0.
using System;
using SixLabors.ImageSharp.PixelFormats;
namespace SixLabors.ImageSharp.Processing
{

2
src/ImageSharp.Drawing/Processing/Pens.cs

@ -1,8 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
namespace SixLabors.ImageSharp.Processing
{
/// <summary>

5
src/ImageSharp.Drawing/Processing/Processors/Drawing/DrawImageProcessor.cs

@ -1,12 +1,7 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using System.Buffers;
using System.Threading.Tasks;
using SixLabors.ImageSharp.Memory;
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.Memory;
using SixLabors.Primitives;
namespace SixLabors.ImageSharp.Processing.Processors.Drawing

3
src/ImageSharp.Drawing/Processing/Processors/Drawing/FillProcessor.cs

@ -1,10 +1,7 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using System.Threading.Tasks;
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.Memory;
namespace SixLabors.ImageSharp.Processing.Processors.Drawing
{

1
src/ImageSharp.Drawing/Processing/Processors/Drawing/FillRegionProcessor.cs

@ -3,7 +3,6 @@
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Primitives;
using SixLabors.Memory;
namespace SixLabors.ImageSharp.Processing.Processors.Drawing
{

1
tests/ImageSharp.Benchmarks/General/BasicMath/ClampFloat.cs

@ -2,7 +2,6 @@
using System.Runtime.CompilerServices;
using BenchmarkDotNet.Attributes;
using BenchmarkDotNet.Running;
namespace SixLabors.ImageSharp.Benchmarks.General.BasicMath
{

1
tests/ImageSharp.Benchmarks/General/Vectorization/VectorFetching.cs

@ -5,7 +5,6 @@ namespace SixLabors.ImageSharp.Benchmarks.General.Vectorization
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using BenchmarkDotNet.Attributes;
using SixLabors.Memory;
/// <summary>
/// This benchmark compares different methods for fetching memory data into <see cref="Vector{T}"/>

2
tests/ImageSharp.Sandbox46/Program.cs

@ -10,8 +10,6 @@ namespace SixLabors.ImageSharp.Sandbox46
{
using System;
using SixLabors.ImageSharp.Tests.Formats.Jpg;
using SixLabors.ImageSharp.Tests.PixelFormats;
using SixLabors.ImageSharp.Tests.Processing.Processors.Transforms;
using Xunit.Abstractions;

4
tests/ImageSharp.Tests/Advanced/AdvancedImageExtensionsTests.cs

@ -11,10 +11,6 @@ using Xunit;
namespace SixLabors.ImageSharp.Tests.Advanced
{
using System.Buffers;
using SixLabors.Memory;
public class AdvancedImageExtensionsTests
{
public class GetPixelMemory

1
tests/ImageSharp.Tests/BaseImageOperationsExtensionTest.cs

@ -3,7 +3,6 @@
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Processors;
using SixLabors.Primitives;
using Xunit;

1
tests/ImageSharp.Tests/Color/ColorTests.cs

@ -3,7 +3,6 @@
using System;
using System.Linq;
using System.Reflection;
using SixLabors.ImageSharp.PixelFormats;

1
tests/ImageSharp.Tests/Drawing/DrawBezierTests.cs

@ -4,7 +4,6 @@
using System;
using System.Numerics;
using SixLabors.ImageSharp.Memory;
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;

1
tests/ImageSharp.Tests/Drawing/DrawComplexPolygonTests.cs

@ -3,7 +3,6 @@
using System.Numerics;
using SixLabors.ImageSharp.Memory;
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.Shapes;

2
tests/ImageSharp.Tests/Drawing/DrawImageTests.cs

@ -3,13 +3,11 @@
using System;
using SixLabors.ImageSharp.Formats;
using SixLabors.ImageSharp.Formats.Png;
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Tests.TestUtilities.ImageComparison;
using SixLabors.Primitives;
using SixLabors.Shapes;
using Xunit;

1
tests/ImageSharp.Tests/Drawing/DrawLinesTests.cs

@ -4,7 +4,6 @@
using System;
using System.Numerics;
using SixLabors.ImageSharp.Memory;
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;

1
tests/ImageSharp.Tests/Drawing/DrawPathTests.cs

@ -4,7 +4,6 @@
using System;
using System.Numerics;
using SixLabors.ImageSharp.Memory;
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.Primitives;

10
tests/ImageSharp.Tests/Drawing/DrawPolygonTests.cs

@ -1,12 +1,10 @@
// Copyright (c) Six Labors and contributors.
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using System;
using System.Numerics;
using SixLabors.ImageSharp.Memory;
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.Primitives;
using SixLabors.ImageSharp.Processing;
using Xunit;
@ -28,16 +26,16 @@ namespace SixLabors.ImageSharp.Tests.Drawing
new Vector2(10, 10), new Vector2(200, 150), new Vector2(50, 300)
};
Color color = TestUtils.GetColorByName(colorName).WithAlpha(alpha);
GraphicsOptions options = new GraphicsOptions(antialias);
string aa = antialias ? "" : "_NoAntialias";
FormattableString outputDetails = $"{colorName}_A({alpha})_T({thickness}){aa}";
provider.RunValidatingProcessorTest(
c => c.DrawPolygon(options, color, thickness, simplePath),
outputDetails,
appendSourceFileOrDescription: false);
}
}
}
}

1
tests/ImageSharp.Tests/Drawing/FillComplexPolygonTests.cs

@ -3,7 +3,6 @@
using System.Numerics;
using SixLabors.ImageSharp.Memory;
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.Shapes;

5
tests/ImageSharp.Tests/Drawing/FillImageBrushTests.cs

@ -1,14 +1,9 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using System;
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Primitives;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Tests.TestUtilities.ImageComparison;
using SixLabors.Primitives;
using SixLabors.Shapes;
using Xunit;

1
tests/ImageSharp.Tests/Drawing/FillPolygonTests.cs

@ -4,7 +4,6 @@
using System;
using System.Numerics;
using SixLabors.ImageSharp.Memory;
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.Shapes;

2
tests/ImageSharp.Tests/Drawing/SolidFillBlendedShapesTests.cs

@ -2,7 +2,7 @@
// Licensed under the Apache License, Version 2.0.
using System;
using System.Collections.Generic;
using System.Linq;
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Tests.TestUtilities.ImageComparison;

3
tests/ImageSharp.Tests/Formats/Png/PngChunkTypeTests.cs

@ -1,5 +1,4 @@
using System;
using System.Buffers.Binary;
using System.Buffers.Binary;
using System.Text;
using SixLabors.ImageSharp.Formats.Png;
using Xunit;

2
tests/ImageSharp.Tests/Formats/Png/PngSmokeTests.cs

@ -3,7 +3,7 @@
using System.IO;
using Xunit;
using SixLabors.ImageSharp.Formats;
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Tests.TestUtilities.ImageComparison;

1
tests/ImageSharp.Tests/Helpers/GuardTests.cs

@ -3,7 +3,6 @@
using System;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using Xunit;
// ReSharper disable InconsistentNaming

1
tests/ImageSharp.Tests/Image/ImageFrameCollectionTests.NonGeneric.cs

@ -2,7 +2,6 @@
// // Licensed under the Apache License, Version 2.0.
using System;
using System.Drawing.Imaging;
using System.Linq;
using SixLabors.ImageSharp.Advanced;

2
tests/ImageSharp.Tests/Image/ImageFrameCollectionTests.cs

@ -1,6 +1,4 @@
using System;
using System.Collections.Generic;
using System.Text;
using SixLabors.ImageSharp.PixelFormats;

5
tests/ImageSharp.Tests/Image/ImageSaveTests.cs

@ -3,7 +3,7 @@
using System;
using System.IO;
using System.Linq;
using SixLabors.ImageSharp.Formats;
using SixLabors.ImageSharp.IO;
using SixLabors.ImageSharp.PixelFormats;
@ -13,9 +13,6 @@ using Xunit;
namespace SixLabors.ImageSharp.Tests
{
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
/// <summary>
/// Tests the <see cref="Image"/> class.
/// </summary>

3
tests/ImageSharp.Tests/Image/ImageTests.DetectFormat.cs

@ -4,8 +4,7 @@
using System;
using System.IO;
using SixLabors.ImageSharp.Formats;
using SixLabors.ImageSharp.IO;
using Moq;
using Xunit;
// ReSharper disable InconsistentNaming

1
tests/ImageSharp.Tests/Image/ImageTests.Load_FromBytes_UseGlobalConfiguration.cs

@ -2,7 +2,6 @@
// Licensed under the Apache License, Version 2.0.
using System;
using System.IO;
using SixLabors.ImageSharp.Formats;
using SixLabors.ImageSharp.Formats.Bmp;

2
tests/ImageSharp.Tests/Image/ImageTests.Load_FromStream_ThrowsRightException.cs

@ -5,9 +5,7 @@ using System;
using System.IO;
using SixLabors.ImageSharp.Formats;
using SixLabors.ImageSharp.Formats.Bmp;
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.Primitives;
using Xunit;

2
tests/ImageSharp.Tests/MetaData/Profiles/ICC/DataWriter/IccDataWriter.MatrixTests.cs

@ -2,7 +2,7 @@
// Licensed under the Apache License, Version 2.0.
using System.Numerics;
using SixLabors.Memory;
using SixLabors.ImageSharp.Metadata.Profiles.Icc;
using Xunit;

1
tests/ImageSharp.Tests/PixelFormats/Bgra32Tests.cs

@ -1,7 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using System;
using System.Numerics;
using SixLabors.ImageSharp.PixelFormats;
using Xunit;

2
tests/ImageSharp.Tests/PixelFormats/PixelBlenders/PorterDuffFunctionsTests_TPixel.cs

@ -9,8 +9,6 @@ using Xunit;
namespace SixLabors.ImageSharp.Tests.PixelFormats.PixelBlenders
{
using SixLabors.Memory;
public class PorterDuffFunctionsTestsTPixel
{
private static Span<T> AsSpan<T>(T value)

6
tests/ImageSharp.Tests/PixelFormats/PixelOperations/PixelOperationsTests.Gray16OperationsTests.cs

@ -1,12 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using System;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using SixLabors.ImageSharp.Memory;
using SixLabors.ImageSharp.PixelFormats;
using Xunit;

5
tests/ImageSharp.Tests/PixelFormats/PixelOperations/PixelOperationsTests.Gray8OperationsTests.cs

@ -1,11 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using System;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using SixLabors.ImageSharp.Memory;
using SixLabors.ImageSharp.PixelFormats;
using Xunit;

1
tests/ImageSharp.Tests/PixelFormats/PixelOperations/PixelOperationsTests.cs

@ -10,7 +10,6 @@ using System.Runtime.InteropServices;
using SixLabors.ImageSharp.ColorSpaces.Companding;
using SixLabors.ImageSharp.Memory;
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Tests.Formats.Jpg.Utils;
using Xunit;
using Xunit.Abstractions;

3
tests/ImageSharp.Tests/PixelFormats/PixelOperationsTests.Blender.cs

@ -2,8 +2,7 @@
// Licensed under the Apache License, Version 2.0.
using System;
using System.Collections.Generic;
using System.Text;
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.PixelFormats.PixelBlenders;
using SixLabors.ImageSharp.Tests.TestUtilities;

1
tests/ImageSharp.Tests/PixelFormats/Rgba32Tests.cs

@ -5,7 +5,6 @@ using System;
using System.Numerics;
using SixLabors.ImageSharp.PixelFormats;
using Xunit;
using Xunit.Abstractions;
namespace SixLabors.ImageSharp.Tests.PixelFormats
{

1
tests/ImageSharp.Tests/Processing/Binarization/BinaryDitherTest.cs

@ -1,7 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Processors.Binarization;
using SixLabors.ImageSharp.Processing.Processors.Dithering;

1
tests/ImageSharp.Tests/Processing/Binarization/BinaryThresholdTest.cs

@ -1,7 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Processors.Binarization;

1
tests/ImageSharp.Tests/Processing/Convolution/BoxBlurTest.cs

@ -1,7 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Processors.Convolution;
using Xunit;

5
tests/ImageSharp.Tests/Processing/Convolution/DetectEdgesTest.cs

@ -2,12 +2,11 @@
// Licensed under the Apache License, Version 2.0.
using System.Collections.Generic;
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Processors;
using SixLabors.ImageSharp.Processing.Processors.Convolution;
using SixLabors.ImageSharp.Tests.TestUtilities;
using SixLabors.Primitives;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Processing.Convolution

1
tests/ImageSharp.Tests/Processing/Convolution/GaussianBlurTest.cs

@ -1,7 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Processors.Convolution;
using Xunit;

1
tests/ImageSharp.Tests/Processing/Convolution/GaussianSharpenTest.cs

@ -1,7 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Processors.Convolution;
using Xunit;

1
tests/ImageSharp.Tests/Processing/Dithering/DitherTest.cs

@ -3,7 +3,6 @@
using System;
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Dithering;
using SixLabors.ImageSharp.Processing.Processors.Dithering;

1
tests/ImageSharp.Tests/Processing/Effects/BackgroundColorTest.cs

@ -1,7 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Processors.Overlays;

1
tests/ImageSharp.Tests/Processing/Effects/OilPaintTest.cs

@ -1,7 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Processors.Effects;
using Xunit;

1
tests/ImageSharp.Tests/Processing/Effects/PixelateTest.cs

@ -1,7 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Processors.Effects;
using Xunit;

1
tests/ImageSharp.Tests/Processing/Filters/BlackWhiteTest.cs

@ -1,7 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Processors.Filters;
using Xunit;

1
tests/ImageSharp.Tests/Processing/Filters/BrightnessTest.cs

@ -1,7 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Processors.Filters;
using Xunit;

1
tests/ImageSharp.Tests/Processing/Filters/ColorBlindnessTest.cs

@ -3,7 +3,6 @@
using System.Collections.Generic;
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Processors.Filters;
using SixLabors.ImageSharp.Processing.Processors;

2
tests/ImageSharp.Tests/Processing/Filters/ContrastTest.cs

@ -1,8 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing.Processors;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Processing.Effects

3
tests/ImageSharp.Tests/Processing/Filters/FilterTest.cs

@ -1,9 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Processors;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Processing.Filters

1
tests/ImageSharp.Tests/Processing/Filters/GrayscaleTest.cs

@ -3,7 +3,6 @@
using System.Collections.Generic;
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Processors.Filters;
using SixLabors.ImageSharp.Processing.Processors;

1
tests/ImageSharp.Tests/Processing/Filters/HueTest.cs

@ -1,7 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Processors.Filters;

1
tests/ImageSharp.Tests/Processing/Filters/InvertTest.cs

@ -1,7 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Processors.Filters;
using Xunit;

1
tests/ImageSharp.Tests/Processing/Filters/KodachromeTest.cs

@ -1,7 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Processors.Filters;
using Xunit;

4
tests/ImageSharp.Tests/Processing/Filters/LomographTest.cs

@ -1,10 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using System.IO;
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing.Processors;
using SixLabors.Primitives;
using Xunit;
namespace SixLabors.ImageSharp.Tests

1
tests/ImageSharp.Tests/Processing/Filters/OpacityTest.cs

@ -1,7 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Processors.Filters;
using Xunit;

1
tests/ImageSharp.Tests/Processing/Filters/PolaroidTest.cs

@ -1,7 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Processors.Filters;

1
tests/ImageSharp.Tests/Processing/Filters/SaturateTest.cs

@ -1,7 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Processors.Filters;
using Xunit;

1
tests/ImageSharp.Tests/Processing/Filters/SepiaTest.cs

@ -1,7 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Processors.Filters;
using Xunit;

2
tests/ImageSharp.Tests/Processing/Overlays/GlowTest.cs

@ -1,8 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using System;
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Primitives;
using SixLabors.ImageSharp.Processing;

1
tests/ImageSharp.Tests/Processing/Overlays/VignetteTest.cs

@ -1,7 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Primitives;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Processors.Overlays;

4
tests/ImageSharp.Tests/Processing/Processors/Convolution/GaussianBlurTest.cs

@ -1,13 +1,9 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Tests.TestUtilities.ImageComparison;
using SixLabors.Primitives;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Processing.Processors.Convolution
{
[GroupOutput("Convolution")]

3
tests/ImageSharp.Tests/Processing/Processors/Convolution/GaussianSharpenTest.cs

@ -1,11 +1,8 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Tests.TestUtilities.ImageComparison;
using SixLabors.Primitives;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Processing.Processors.Convolution
{

2
tests/ImageSharp.Tests/Processing/Processors/Dithering/DitherTests.cs

@ -2,12 +2,10 @@
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Primitives;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Dithering;
using SixLabors.ImageSharp.Processing.Processors.Dithering;
using SixLabors.ImageSharp.Tests.TestUtilities.ImageComparison;
using SixLabors.Primitives;
using Xunit;

2
tests/ImageSharp.Tests/Processing/Processors/Effects/BackgroundColorTest.cs

@ -3,9 +3,7 @@
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Tests.TestUtilities.ImageComparison;
using SixLabors.Primitives;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Processing.Processors.Effects

2
tests/ImageSharp.Tests/Processing/Processors/Effects/OilPaintTest.cs

@ -3,9 +3,7 @@
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Tests.TestUtilities.ImageComparison;
using SixLabors.Primitives;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Processing.Processors.Effects

2
tests/ImageSharp.Tests/Processing/Processors/Effects/PixelateTest.cs

@ -3,8 +3,6 @@
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Tests.TestUtilities.ImageComparison;
using SixLabors.Primitives;
using Xunit;

2
tests/ImageSharp.Tests/Processing/Processors/Filters/GrayscaleTest.cs

@ -1,9 +1,7 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.Advanced;
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using Xunit;

4
tests/ImageSharp.Tests/Processing/Processors/Overlays/GlowTest.cs

@ -1,12 +1,8 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Tests.TestUtilities.ImageComparison;
using SixLabors.Primitives;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Processing.Processors.Overlays
{

2
tests/ImageSharp.Tests/Processing/Processors/Overlays/OverlayTestBase.cs

@ -1,8 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using System.Reflection;
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Tests.TestUtilities.ImageComparison;

1
tests/ImageSharp.Tests/Processing/Processors/Quantization/PaletteQuantizerTests.cs

@ -1,7 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using System;
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Processors.Quantization;

1
tests/ImageSharp.Tests/Processing/Processors/Transforms/AutoOrientTests.cs

@ -5,7 +5,6 @@ using System;
using SixLabors.ImageSharp.Metadata.Profiles.Exif;
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Formats.Jpeg.Components.Decoder;
using SixLabors.ImageSharp.Tests.TestUtilities.ImageComparison;
using Xunit;

2
tests/ImageSharp.Tests/Processing/Processors/Transforms/ResizeKernelMapTests.cs

@ -2,9 +2,7 @@
// Licensed under the Apache License, Version 2.0.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using SixLabors.ImageSharp.Processing;

1
tests/ImageSharp.Tests/Processing/Processors/Transforms/ResizeTests.cs

@ -12,7 +12,6 @@ using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Processors.Transforms;
using SixLabors.ImageSharp.Tests.Memory;
using SixLabors.ImageSharp.Tests.TestUtilities.ImageComparison;
using SixLabors.Memory;
using SixLabors.Primitives;
using Xunit;

2
tests/ImageSharp.Tests/Processing/Processors/Transforms/RotateFlipTests.cs

@ -2,7 +2,7 @@
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Processing.Processors.Transforms

2
tests/ImageSharp.Tests/Processing/Transforms/AutoOrientTests.cs

@ -1,8 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Processing.Transforms

2
tests/ImageSharp.Tests/Processing/Transforms/CropTest.cs

@ -2,7 +2,7 @@
// Licensed under the Apache License, Version 2.0.
using System;
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Processors.Transforms;
using SixLabors.Primitives;

1
tests/ImageSharp.Tests/Processing/Transforms/EntropyCropTest.cs

@ -1,7 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Processors.Transforms;
using Xunit;

4
tests/ImageSharp.Tests/Processing/Transforms/FlipTests.cs

@ -1,10 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using System;
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Processors;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Processing.Transforms

1
tests/ImageSharp.Tests/Processing/Transforms/ResizeTests.cs

@ -1,7 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Processors.Transforms;
using SixLabors.Primitives;

1
tests/ImageSharp.Tests/Processing/Transforms/RotateFlipTests.cs

@ -1,7 +1,6 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Processors.Transforms;
using Xunit;

Some files were not shown because too many files changed in this diff

Loading…
Cancel
Save