Browse Source

Fix namespaces

pull/1635/head
Brian Popow 5 years ago
parent
commit
2931619bc5
  1. 2
      src/ImageSharp/Metadata/Profiles/ICC/DataReader/IccDataReader.cs
  2. 6
      tests/ImageSharp.Tests/Formats/Gif/Sections/GifGraphicControlExtensionTests.cs
  3. 6
      tests/ImageSharp.Tests/Formats/Gif/Sections/GifImageDescriptorTests.cs
  4. 6
      tests/ImageSharp.Tests/Formats/Gif/Sections/GifLogicalScreenDescriptorTests.cs
  5. 2
      tests/ImageSharp.Tests/Formats/Png/PngFilterTests.cs
  6. 2
      tests/ImageSharp.Tests/Formats/Png/ReferenceImplementations.cs
  7. 2
      tests/ImageSharp.Tests/Metadata/Profiles/Exif/ExifProfileTests.cs
  8. 2
      tests/ImageSharp.Tests/Metadata/Profiles/Exif/ExifReaderTests.cs
  9. 2
      tests/ImageSharp.Tests/Metadata/Profiles/Exif/ExifTagDescriptionAttributeTests.cs
  10. 4
      tests/ImageSharp.Tests/Metadata/Profiles/Exif/ExifValueTests.cs
  11. 2
      tests/ImageSharp.Tests/Metadata/Profiles/ICC/DataReader/IccDataReaderCurvesTests.cs
  12. 2
      tests/ImageSharp.Tests/Metadata/Profiles/ICC/DataReader/IccDataReaderLutTests.cs
  13. 2
      tests/ImageSharp.Tests/Metadata/Profiles/ICC/DataReader/IccDataReaderMatrixTests.cs
  14. 2
      tests/ImageSharp.Tests/Metadata/Profiles/ICC/DataReader/IccDataReaderMultiProcessElementTests.cs
  15. 2
      tests/ImageSharp.Tests/Metadata/Profiles/ICC/DataReader/IccDataReaderNonPrimitivesTests.cs
  16. 2
      tests/ImageSharp.Tests/Metadata/Profiles/ICC/DataReader/IccDataReaderPrimitivesTests.cs
  17. 2
      tests/ImageSharp.Tests/Metadata/Profiles/ICC/DataReader/IccDataReaderTagDataEntryTests.cs
  18. 2
      tests/ImageSharp.Tests/Metadata/Profiles/ICC/DataReader/IccDataReaderTests.cs
  19. 2
      tests/ImageSharp.Tests/Metadata/Profiles/ICC/DataWriter/IccDataWriterCurvesTests.cs
  20. 2
      tests/ImageSharp.Tests/Metadata/Profiles/ICC/DataWriter/IccDataWriterLutTests.cs
  21. 2
      tests/ImageSharp.Tests/Metadata/Profiles/ICC/DataWriter/IccDataWriterLutTests1.cs
  22. 2
      tests/ImageSharp.Tests/Metadata/Profiles/ICC/DataWriter/IccDataWriterLutTests2.cs
  23. 2
      tests/ImageSharp.Tests/Metadata/Profiles/ICC/DataWriter/IccDataWriterMatrixTests.cs
  24. 2
      tests/ImageSharp.Tests/Metadata/Profiles/ICC/DataWriter/IccDataWriterMultiProcessElementTests.cs
  25. 2
      tests/ImageSharp.Tests/Metadata/Profiles/ICC/DataWriter/IccDataWriterNonPrimitivesTests.cs
  26. 2
      tests/ImageSharp.Tests/Metadata/Profiles/ICC/DataWriter/IccDataWriterPrimitivesTests.cs
  27. 2
      tests/ImageSharp.Tests/Metadata/Profiles/ICC/DataWriter/IccDataWriterTagDataEntryTests.cs
  28. 2
      tests/ImageSharp.Tests/Metadata/Profiles/ICC/DataWriter/IccDataWriterTests.cs
  29. 2
      tests/ImageSharp.Tests/Metadata/Profiles/ICC/IccProfileTests.cs
  30. 2
      tests/ImageSharp.Tests/Metadata/Profiles/ICC/IccReaderTests.cs
  31. 2
      tests/ImageSharp.Tests/Metadata/Profiles/ICC/IccWriterTests.cs
  32. 2
      tests/ImageSharp.Tests/Metadata/Profiles/ICC/Various/IccProfileIdTests.cs
  33. 4
      tests/ImageSharp.Tests/Metadata/Profiles/IPTC/IptcProfileTests.cs
  34. 1
      tests/ImageSharp.Tests/Processing/BaseImageOperationsExtensionTest.cs
  35. 2
      tests/ImageSharp.Tests/Processing/Convolution/Processors/LaplacianKernelFactoryTests.cs
  36. 2
      tests/ImageSharp.Tests/Processing/Dithering/DitherTest.cs
  37. 2
      tests/ImageSharp.Tests/Processing/Filters/BrightnessTest.cs
  38. 2
      tests/ImageSharp.Tests/Processing/Filters/ContrastTest.cs
  39. 2
      tests/ImageSharp.Tests/Processing/Filters/InvertTest.cs
  40. 2
      tests/ImageSharp.Tests/Processing/Filters/LightnessTest.cs
  41. 3
      tests/ImageSharp.Tests/Processing/Filters/LomographTest.cs
  42. 2
      tests/ImageSharp.Tests/Processing/Filters/OpacityTest.cs
  43. 2
      tests/ImageSharp.Tests/Processing/IntegralImageTests.cs
  44. 2
      tests/ImageSharp.Tests/Processing/Processors/Dithering/DitherTests.cs
  45. 2
      tests/ImageSharp.Tests/Processing/Processors/Filters/BrightnessTest.cs
  46. 2
      tests/ImageSharp.Tests/Processing/Processors/Filters/ContrastTest.cs
  47. 2
      tests/ImageSharp.Tests/Processing/Processors/Filters/InvertTest.cs
  48. 2
      tests/ImageSharp.Tests/Processing/Processors/Filters/LightnessTest.cs
  49. 2
      tests/ImageSharp.Tests/Processing/Processors/Filters/OpacityTest.cs

2
src/ImageSharp/Metadata/Profiles/ICC/DataReader/IccDataReader.cs

@ -3,7 +3,7 @@
using System;
namespace SixLabors.ImageSharp.Metadata.Profiles.Icc
namespace SixLabors.ImageSharp.Metadata.Profiles.ICC.DataReader
{
/// <summary>
/// Provides methods to read ICC data types

6
tests/ImageSharp.Tests/Formats/Gif/Sections/GifGraphicControlExtensionTests.cs

@ -1,11 +1,11 @@
// Copyright (c) Six Labors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.Formats.Gif;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Formats.Gif
namespace SixLabors.ImageSharp.Tests.Formats.Gif.Sections
{
public class GifGraphicControlExtensionTests
{
@ -18,4 +18,4 @@ namespace SixLabors.ImageSharp.Tests.Formats.Gif
Assert.Equal(14, GifGraphicControlExtension.GetPackedValue(GifDisposalMethod.RestoreToPrevious, true, false));
}
}
}
}

6
tests/ImageSharp.Tests/Formats/Gif/Sections/GifImageDescriptorTests.cs

@ -1,11 +1,11 @@
// Copyright (c) Six Labors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.Formats.Gif;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Formats.Gif
namespace SixLabors.ImageSharp.Tests.Formats.Gif.Sections
{
public class GifImageDescriptorTests
{
@ -21,4 +21,4 @@ namespace SixLabors.ImageSharp.Tests.Formats.Gif
Assert.Equal(232, GifImageDescriptor.GetPackedValue(true, true, true, 8));
}
}
}
}

6
tests/ImageSharp.Tests/Formats/Gif/Sections/GifLogicalScreenDescriptorTests.cs

@ -1,11 +1,11 @@
// Copyright (c) Six Labors.
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.Formats.Gif;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Formats.Gif
namespace SixLabors.ImageSharp.Tests.Formats.Gif.Sections
{
public class GifLogicalScreenDescriptorTests
{
@ -20,4 +20,4 @@ namespace SixLabors.ImageSharp.Tests.Formats.Gif
Assert.Equal(55, GifLogicalScreenDescriptor.GetPackedValue(false, 3, false, 7));
}
}
}
}

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

@ -7,7 +7,6 @@ using System;
using SixLabors.ImageSharp.Formats.Png;
using SixLabors.ImageSharp.Formats.Png.Filters;
using SixLabors.ImageSharp.Tests.Formats.Png.Utils;
using SixLabors.ImageSharp.Tests.TestUtilities;
using Xunit;
using Xunit.Abstractions;
@ -142,7 +141,6 @@ namespace SixLabors.ImageSharp.Tests.Formats.Png
HwIntrinsics.DisableSIMD);
}
[Fact]
public void UpAvx2()
{

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

@ -6,7 +6,7 @@ using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// ReSharper disable InconsistentNaming
namespace SixLabors.ImageSharp.Tests.Formats.Png.Utils
namespace SixLabors.ImageSharp.Tests.Formats.Png
{
/// <summary>
/// This class contains reference implementations to produce verification data for unit tests

2
tests/ImageSharp.Tests/Metadata/Profiles/Exif/ExifProfileTests.cs

@ -12,7 +12,7 @@ using SixLabors.ImageSharp.PixelFormats;
using Xunit;
namespace SixLabors.ImageSharp.Tests
namespace SixLabors.ImageSharp.Tests.Metadata.Profiles.Exif
{
[Trait("Profile", "Exif")]
public class ExifProfileTests

2
tests/ImageSharp.Tests/Metadata/Profiles/Exif/ExifReaderTests.cs

@ -6,7 +6,7 @@ using System.Collections.Generic;
using SixLabors.ImageSharp.Metadata.Profiles.Exif;
using Xunit;
namespace SixLabors.ImageSharp.Tests
namespace SixLabors.ImageSharp.Tests.Metadata.Profiles.Exif
{
[Trait("Profile", "Exif")]
public class ExifReaderTests

2
tests/ImageSharp.Tests/Metadata/Profiles/Exif/ExifTagDescriptionAttributeTests.cs

@ -4,7 +4,7 @@
using SixLabors.ImageSharp.Metadata.Profiles.Exif;
using Xunit;
namespace SixLabors.ImageSharp.Tests
namespace SixLabors.ImageSharp.Tests.Metadata.Profiles.Exif
{
[Trait("Profile", "Exif")]
public class ExifTagDescriptionAttributeTests

4
tests/ImageSharp.Tests/Metadata/Profiles/Exif/ExifValueTests.cs

@ -5,12 +5,12 @@ using SixLabors.ImageSharp.Metadata.Profiles.Exif;
using SixLabors.ImageSharp.PixelFormats;
using Xunit;
namespace SixLabors.ImageSharp.Tests
namespace SixLabors.ImageSharp.Tests.Metadata.Profiles.Exif
{
[Trait("Profile", "Exif")]
public class ExifValueTests
{
private ExifProfile profile;
private readonly ExifProfile profile;
public ExifValueTests()
{

2
tests/ImageSharp.Tests/Metadata/Profiles/ICC/DataReader/IccDataReaderCurvesTests.cs

@ -4,7 +4,7 @@
using SixLabors.ImageSharp.Metadata.Profiles.Icc;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Icc
namespace SixLabors.ImageSharp.Tests.Metadata.Profiles.ICC.DataReader
{
[Trait("Profile", "Icc")]
public class IccDataReaderCurvesTests

2
tests/ImageSharp.Tests/Metadata/Profiles/ICC/DataReader/IccDataReaderLutTests.cs

@ -4,7 +4,7 @@
using SixLabors.ImageSharp.Metadata.Profiles.Icc;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Icc
namespace SixLabors.ImageSharp.Tests.Metadata.Profiles.ICC.DataReader
{
[Trait("Profile", "Icc")]
public class IccDataReaderLutTests

2
tests/ImageSharp.Tests/Metadata/Profiles/ICC/DataReader/IccDataReaderMatrixTests.cs

@ -4,7 +4,7 @@
using SixLabors.ImageSharp.Metadata.Profiles.Icc;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Icc
namespace SixLabors.ImageSharp.Tests.Metadata.Profiles.ICC.DataReader
{
[Trait("Profile", "Icc")]
public class IccDataReaderMatrixTests

2
tests/ImageSharp.Tests/Metadata/Profiles/ICC/DataReader/IccDataReaderMultiProcessElementTests.cs

@ -4,7 +4,7 @@
using SixLabors.ImageSharp.Metadata.Profiles.Icc;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Icc
namespace SixLabors.ImageSharp.Tests.Metadata.Profiles.ICC.DataReader
{
[Trait("Profile", "Icc")]
public class IccDataReaderMultiProcessElementTests

2
tests/ImageSharp.Tests/Metadata/Profiles/ICC/DataReader/IccDataReaderNonPrimitivesTests.cs

@ -6,7 +6,7 @@ using System.Numerics;
using SixLabors.ImageSharp.Metadata.Profiles.Icc;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Icc
namespace SixLabors.ImageSharp.Tests.Metadata.Profiles.ICC.DataReader
{
[Trait("Profile", "Icc")]
public class IccDataReaderNonPrimitivesTests

2
tests/ImageSharp.Tests/Metadata/Profiles/ICC/DataReader/IccDataReaderPrimitivesTests.cs

@ -5,7 +5,7 @@ using System;
using SixLabors.ImageSharp.Metadata.Profiles.Icc;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Icc
namespace SixLabors.ImageSharp.Tests.Metadata.Profiles.ICC.DataReader
{
[Trait("Profile", "Icc")]
public class IccDataReaderPrimitivesTests

2
tests/ImageSharp.Tests/Metadata/Profiles/ICC/DataReader/IccDataReaderTagDataEntryTests.cs

@ -4,7 +4,7 @@
using SixLabors.ImageSharp.Metadata.Profiles.Icc;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Icc
namespace SixLabors.ImageSharp.Tests.Metadata.Profiles.ICC.DataReader
{
[Trait("Profile", "Icc")]
public class IccDataReaderTagDataEntryTests

2
tests/ImageSharp.Tests/Metadata/Profiles/ICC/DataReader/IccDataReaderTests.cs

@ -5,7 +5,7 @@ using System;
using SixLabors.ImageSharp.Metadata.Profiles.Icc;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Icc
namespace SixLabors.ImageSharp.Tests.Metadata.Profiles.ICC.DataReader
{
[Trait("Profile", "Icc")]
public class IccDataReaderTests

2
tests/ImageSharp.Tests/Metadata/Profiles/ICC/DataWriter/IccDataWriterCurvesTests.cs

@ -4,7 +4,7 @@
using SixLabors.ImageSharp.Metadata.Profiles.Icc;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Icc
namespace SixLabors.ImageSharp.Tests.Metadata.Profiles.ICC.DataWriter
{
[Trait("Profile", "Icc")]
public class IccDataWriterCurvesTests

2
tests/ImageSharp.Tests/Metadata/Profiles/ICC/DataWriter/IccDataWriterLutTests.cs

@ -4,7 +4,7 @@
using SixLabors.ImageSharp.Metadata.Profiles.Icc;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Icc
namespace SixLabors.ImageSharp.Tests.Metadata.Profiles.ICC.DataWriter
{
[Trait("Profile", "Icc")]
public class IccDataWriterLutTests

2
tests/ImageSharp.Tests/Metadata/Profiles/ICC/DataWriter/IccDataWriterLutTests1.cs

@ -4,7 +4,7 @@
using SixLabors.ImageSharp.Metadata.Profiles.Icc;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Icc
namespace SixLabors.ImageSharp.Tests.Metadata.Profiles.ICC.DataWriter
{
[Trait("Profile", "Icc")]
public class IccDataWriterLutTests1

2
tests/ImageSharp.Tests/Metadata/Profiles/ICC/DataWriter/IccDataWriterLutTests2.cs

@ -4,7 +4,7 @@
using SixLabors.ImageSharp.Metadata.Profiles.Icc;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Icc
namespace SixLabors.ImageSharp.Tests.Metadata.Profiles.ICC.DataWriter
{
[Trait("Profile", "Icc")]
public class IccDataWriterLutTests2

2
tests/ImageSharp.Tests/Metadata/Profiles/ICC/DataWriter/IccDataWriterMatrixTests.cs

@ -6,7 +6,7 @@ using System.Numerics;
using SixLabors.ImageSharp.Metadata.Profiles.Icc;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Icc
namespace SixLabors.ImageSharp.Tests.Metadata.Profiles.ICC.DataWriter
{
[Trait("Profile", "Icc")]
public class IccDataWriterMatrixTests

2
tests/ImageSharp.Tests/Metadata/Profiles/ICC/DataWriter/IccDataWriterMultiProcessElementTests.cs

@ -4,7 +4,7 @@
using SixLabors.ImageSharp.Metadata.Profiles.Icc;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Icc
namespace SixLabors.ImageSharp.Tests.Metadata.Profiles.ICC.DataWriter
{
[Trait("Profile", "Icc")]
public class IccDataWriterMultiProcessElementTests

2
tests/ImageSharp.Tests/Metadata/Profiles/ICC/DataWriter/IccDataWriterNonPrimitivesTests.cs

@ -6,7 +6,7 @@ using System.Numerics;
using SixLabors.ImageSharp.Metadata.Profiles.Icc;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Icc
namespace SixLabors.ImageSharp.Tests.Metadata.Profiles.ICC.DataWriter
{
[Trait("Profile", "Icc")]
public class IccDataWriterNonPrimitivesTests

2
tests/ImageSharp.Tests/Metadata/Profiles/ICC/DataWriter/IccDataWriterPrimitivesTests.cs

@ -5,7 +5,7 @@ using System;
using SixLabors.ImageSharp.Metadata.Profiles.Icc;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Icc
namespace SixLabors.ImageSharp.Tests.Metadata.Profiles.ICC.DataWriter
{
[Trait("Profile", "Icc")]
public class IccDataWriterPrimitivesTests

2
tests/ImageSharp.Tests/Metadata/Profiles/ICC/DataWriter/IccDataWriterTagDataEntryTests.cs

@ -4,7 +4,7 @@
using SixLabors.ImageSharp.Metadata.Profiles.Icc;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Icc
namespace SixLabors.ImageSharp.Tests.Metadata.Profiles.ICC.DataWriter
{
[Trait("Profile", "Icc")]
public class IccDataWriterTagDataEntryTests

2
tests/ImageSharp.Tests/Metadata/Profiles/ICC/DataWriter/IccDataWriterTests.cs

@ -4,7 +4,7 @@
using SixLabors.ImageSharp.Metadata.Profiles.Icc;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Icc
namespace SixLabors.ImageSharp.Tests.Metadata.Profiles.ICC.DataWriter
{
[Trait("Profile", "Icc")]
public class IccDataWriterTests

2
tests/ImageSharp.Tests/Metadata/Profiles/ICC/IccProfileTests.cs

@ -5,7 +5,7 @@ using System;
using SixLabors.ImageSharp.Metadata.Profiles.Icc;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Icc
namespace SixLabors.ImageSharp.Tests.Metadata.Profiles.Icc
{
[Trait("Profile", "Icc")]
public class IccProfileTests

2
tests/ImageSharp.Tests/Metadata/Profiles/ICC/IccReaderTests.cs

@ -4,7 +4,7 @@
using SixLabors.ImageSharp.Metadata.Profiles.Icc;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Icc
namespace SixLabors.ImageSharp.Tests.Metadata.Profiles.Icc
{
[Trait("Profile", "Icc")]
public class IccReaderTests

2
tests/ImageSharp.Tests/Metadata/Profiles/ICC/IccWriterTests.cs

@ -4,7 +4,7 @@
using SixLabors.ImageSharp.Metadata.Profiles.Icc;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Icc
namespace SixLabors.ImageSharp.Tests.Metadata.Profiles.Icc
{
[Trait("Profile", "Icc")]
public class IccWriterTests

2
tests/ImageSharp.Tests/Metadata/Profiles/ICC/Various/IccProfileIdTests.cs

@ -4,7 +4,7 @@
using SixLabors.ImageSharp.Metadata.Profiles.Icc;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Icc
namespace SixLabors.ImageSharp.Tests.Metadata.Profiles.ICC.Various
{
[Trait("Profile", "Icc")]
public class IccProfileIdTests

4
tests/ImageSharp.Tests/Metadata/Profiles/IPTC/IptcProfileTests.cs

@ -34,7 +34,7 @@ namespace SixLabors.ImageSharp.Tests.Metadata.Profiles.IPTC
// arrange
var profile = new IptcProfile();
var value = new string('s', tag.MaxLength() + 1);
var expectedLength = tag.MaxLength();
int expectedLength = tag.MaxLength();
// act
profile.SetValue(tag, value);
@ -51,7 +51,7 @@ namespace SixLabors.ImageSharp.Tests.Metadata.Profiles.IPTC
// arrange
var profile = new IptcProfile();
var value = new string('s', tag.MaxLength() + 1);
var expectedLength = value.Length;
int expectedLength = value.Length;
// act
profile.SetValue(tag, value, false);

1
tests/ImageSharp.Tests/Processing/BaseImageOperationsExtensionTest.cs

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

2
tests/ImageSharp.Tests/Processing/Convolution/Processors/LaplacianKernelFactoryTests.cs

@ -5,7 +5,7 @@ using System;
using SixLabors.ImageSharp.Processing.Processors.Convolution;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Processing.Processors.Convolution
namespace SixLabors.ImageSharp.Tests.Processing.Convolution.Processors
{
public class LaplacianKernelFactoryTests
{

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

@ -6,7 +6,7 @@ using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Processors.Dithering;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Processing.Binarization
namespace SixLabors.ImageSharp.Tests.Processing.Dithering
{
[Trait("Category", "Processors")]
public class DitherTest : BaseImageOperationsExtensionTest

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

@ -6,7 +6,7 @@ using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Processors.Filters;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Processing.Effects
namespace SixLabors.ImageSharp.Tests.Processing.Filters
{
[Trait("Category", "Processors")]
public class BrightnessTest : BaseImageOperationsExtensionTest

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

@ -5,7 +5,7 @@ using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Processors.Filters;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Processing.Effects
namespace SixLabors.ImageSharp.Tests.Processing.Filters
{
[Trait("Category", "Processors")]
public class ContrastTest : BaseImageOperationsExtensionTest

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

@ -5,7 +5,7 @@ using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Processors.Filters;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Processing.Effects
namespace SixLabors.ImageSharp.Tests.Processing.Filters
{
[Trait("Category", "Processors")]
public class InvertTest : BaseImageOperationsExtensionTest

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

@ -5,7 +5,7 @@ using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Processors.Filters;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Processing.Effects
namespace SixLabors.ImageSharp.Tests.Processing.Filters
{
[Trait("Category", "Processors")]
public class LightnessTest : BaseImageOperationsExtensionTest

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

@ -3,10 +3,9 @@
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Processors.Filters;
using SixLabors.ImageSharp.Tests.Processing;
using Xunit;
namespace SixLabors.ImageSharp.Tests
namespace SixLabors.ImageSharp.Tests.Processing.Filters
{
[Trait("Category", "Processors")]
public class LomographTest : BaseImageOperationsExtensionTest

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

@ -5,7 +5,7 @@ using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Processors.Filters;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Processing.Effects
namespace SixLabors.ImageSharp.Tests.Processing.Filters
{
[Trait("Category", "Processors")]
public class OpacityTest : BaseImageOperationsExtensionTest

2
tests/ImageSharp.Tests/Processing/IntegralImageTests.cs

@ -6,7 +6,7 @@ using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Processing.Transforms
namespace SixLabors.ImageSharp.Tests.Processing
{
public class IntegralImageTests : BaseImageOperationsExtensionTest
{

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

@ -8,7 +8,7 @@ using SixLabors.ImageSharp.Tests.TestUtilities.ImageComparison;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Processing.Processors.Binarization
namespace SixLabors.ImageSharp.Tests.Processing.Processors.Dithering
{
[Trait("Category", "Processors")]
public class DitherTests

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

@ -6,7 +6,7 @@ using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Tests.TestUtilities.ImageComparison;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Processing.Processors.Effects
namespace SixLabors.ImageSharp.Tests.Processing.Processors.Filters
{
[Trait("Category", "Processors")]
[GroupOutput("Filters")]

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

@ -5,7 +5,7 @@ using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Processing.Processors.Effects
namespace SixLabors.ImageSharp.Tests.Processing.Processors.Filters
{
[Trait("Category", "Processors")]
[GroupOutput("Filters")]

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

@ -5,7 +5,7 @@ using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Processing.Processors.Effects
namespace SixLabors.ImageSharp.Tests.Processing.Processors.Filters
{
[Trait("Category", "Processors")]
[GroupOutput("Filters")]

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

@ -6,7 +6,7 @@ using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Tests.TestUtilities.ImageComparison;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Processing.Processors.Effects
namespace SixLabors.ImageSharp.Tests.Processing.Processors.Filters
{
[Trait("Category", "Processors")]
[GroupOutput("Filters")]

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

@ -5,7 +5,7 @@ using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Processing.Processors.Effects
namespace SixLabors.ImageSharp.Tests.Processing.Processors.Filters
{
[Trait("Category", "Processors")]
[GroupOutput("Filters")]

Loading…
Cancel
Save