mirror of https://github.com/SixLabors/ImageSharp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
641 B
22 lines
641 B
namespace ImageSharp.Tests
|
|
{
|
|
using System;
|
|
|
|
using ImageSharp.PixelFormats;
|
|
|
|
public abstract class ImageComparer
|
|
{
|
|
public abstract void Verify<TPixelA, TPixelB>(Image<TPixelA> expected, Image<TPixelB> actual)
|
|
where TPixelA : struct, IPixel<TPixelA> where TPixelB : struct, IPixel<TPixelB>;
|
|
}
|
|
|
|
public class ExactComparer : ImageComparer
|
|
{
|
|
public static ExactComparer Instance { get; } = new ExactComparer();
|
|
|
|
public override void Verify<TPixelA, TPixelB>(Image<TPixelA> expected, Image<TPixelB> actual)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|