// --------------------------------------------------------------------------------------------------------------------
//
// 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/Floorplan.jpeg",
"TestImages/Formats/Jpg/Calliphora.jpg",
//"TestImages/Formats/Jpg/gamma_dalai_lama_gray.jpg", //Perf: Enable for local testing only
"TestImages/Formats/Bmp/Car.bmp",
//"TestImages/Formats/Png/blur.png", //Perf: Enable for local testing only
"TestImages/Formats/Png/splash.png",
"TestImages/Formats/Gif/rings.gif",
//"TestImages/Formats/Gif/giphy.gif" //Perf: Enable for local testing only
};
}
}