// --------------------------------------------------------------------------------------------------------------------
//
// Copyright © James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
//
// --------------------------------------------------------------------------------------------------------------------
namespace ImageProcessor.Tests
{
using System.Collections.Generic;
///
/// The processor test base.
///
public abstract class ProcessorTestBase
{
///
/// The collection of image files to test against.
///
public static readonly List Files = new List
{
"TestImages/Formats/Jpg/Calliphora.jpg",
"TestImages/Formats/Jpg/gamma_dalai_lama_gray.jpg",
"TestImages/Formats/Bmp/Car.bmp",
"TestImages/Formats/Png/blur.png",
"TestImages/Formats/Png/splash.png",
"TestImages/Formats/Gif/rings.gif",
"TestImages/Formats/Gif/giphy.gif"
};
}
}