namespace ImageSharp.Tests { using System; using ImageSharp.PixelFormats; public abstract class ImageComparer { public abstract void Verify(Image expected, Image actual) where TPixelA : struct, IPixel where TPixelB : struct, IPixel; } public class ExactComparer : ImageComparer { public static ExactComparer Instance { get; } = new ExactComparer(); public override void Verify(Image expected, Image actual) { throw new NotImplementedException(); } } }