📷 A modern, cross-platform, 2D Graphics library for .NET
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

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();
}
}
}