Browse Source

corrected namespace of some pixel format tests to SixLabors.ImageSharp.Tests.PixelFormats

pull/603/head
popow 8 years ago
parent
commit
196b936438
  1. 2
      tests/ImageSharp.Tests/PixelFormats/Bgr24Tests.cs
  2. 2
      tests/ImageSharp.Tests/PixelFormats/Bgra32Tests.cs
  3. 2
      tests/ImageSharp.Tests/PixelFormats/Rgb24Tests.cs
  4. 2
      tests/ImageSharp.Tests/PixelFormats/Rgba32Tests.cs

2
tests/ImageSharp.Tests/PixelFormats/Bgr24Tests.cs

@ -5,7 +5,7 @@ using System.Numerics;
using SixLabors.ImageSharp.PixelFormats;
using Xunit;
namespace SixLabors.ImageSharp.Tests
namespace SixLabors.ImageSharp.Tests.PixelFormats
{
public class Bgr24Tests
{

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

@ -5,7 +5,7 @@ using System.Numerics;
using SixLabors.ImageSharp.PixelFormats;
using Xunit;
namespace SixLabors.ImageSharp.Tests
namespace SixLabors.ImageSharp.Tests.PixelFormats
{
public class Bgra32Tests
{

2
tests/ImageSharp.Tests/PixelFormats/Rgb24Tests.cs

@ -6,7 +6,7 @@ using System.Numerics;
using SixLabors.ImageSharp.PixelFormats;
using Xunit;
namespace SixLabors.ImageSharp.Tests
namespace SixLabors.ImageSharp.Tests.PixelFormats
{
public class Rgb24Tests
{

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

@ -6,7 +6,7 @@ using System.Numerics;
using SixLabors.ImageSharp.PixelFormats;
using Xunit;
namespace SixLabors.ImageSharp.Tests
namespace SixLabors.ImageSharp.Tests.PixelFormats
{
/// <summary>
/// Tests the <see cref="Rgba32"/> struct.

Loading…
Cancel
Save