|
|
@ -6,13 +6,12 @@ using System.IO; |
|
|
using System.Linq; |
|
|
using System.Linq; |
|
|
using System.Threading; |
|
|
using System.Threading; |
|
|
using System.Threading.Tasks; |
|
|
using System.Threading.Tasks; |
|
|
using Microsoft.DotNet.RemoteExecutor; |
|
|
|
|
|
using SixLabors.ImageSharp.Formats.Jpeg; |
|
|
using SixLabors.ImageSharp.Formats.Jpeg; |
|
|
using SixLabors.ImageSharp.IO; |
|
|
using SixLabors.ImageSharp.IO; |
|
|
using SixLabors.ImageSharp.Memory; |
|
|
using SixLabors.ImageSharp.Memory; |
|
|
using SixLabors.ImageSharp.PixelFormats; |
|
|
using SixLabors.ImageSharp.PixelFormats; |
|
|
using SixLabors.ImageSharp.Tests.Formats.Jpg.Utils; |
|
|
using SixLabors.ImageSharp.Tests.Formats.Jpg.Utils; |
|
|
using SixLabors.ImageSharp.Tests.TestUtilities; |
|
|
|
|
|
using SixLabors.ImageSharp.Tests.TestUtilities.ImageComparison; |
|
|
using SixLabors.ImageSharp.Tests.TestUtilities.ImageComparison; |
|
|
|
|
|
|
|
|
using Xunit; |
|
|
using Xunit; |
|
|
@ -22,6 +21,7 @@ using Xunit.Abstractions; |
|
|
namespace SixLabors.ImageSharp.Tests.Formats.Jpg |
|
|
namespace SixLabors.ImageSharp.Tests.Formats.Jpg |
|
|
{ |
|
|
{ |
|
|
// TODO: Scatter test cases into multiple test classes
|
|
|
// TODO: Scatter test cases into multiple test classes
|
|
|
|
|
|
[Trait("Format", "Jpg")] |
|
|
public partial class JpegDecoderTests |
|
|
public partial class JpegDecoderTests |
|
|
{ |
|
|
{ |
|
|
public const PixelTypes CommonNonDefaultPixelTypes = PixelTypes.Rgba32 | PixelTypes.Argb32 | PixelTypes.RgbaVector; |
|
|
public const PixelTypes CommonNonDefaultPixelTypes = PixelTypes.Rgba32 | PixelTypes.Argb32 | PixelTypes.RgbaVector; |
|
|
|