//
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
//
namespace ImageProcessorCore.Tests
{
using System.Collections.Generic;
using Xunit;
///
/// The test base class for reading and writing to files.
///
public abstract class FileTestBase
{
///
/// The collection of image files to test against.
///
protected static readonly List Files = new List
{
//TestImages.Png.P1,
//TestImages.Png.Pd,
//TestImages.Jpg.Floorplan, // Perf: Enable for local testing only
TestImages.Jpg.Calliphora,
//TestImages.Jpg.Cmyk, // Perf: Enable for local testing only
//TestImages.Jpg.Turtle,
//TestImages.Jpg.Fb, // Perf: Enable for local testing only
//TestImages.Jpg.Progress, // Perf: Enable for local testing only
//TestImages.Jpg.Gamma_dalai_lama_gray. // Perf: Enable for local testing only
TestImages.Bmp.Car,
//TestImages.Bmp.Neg_height, // Perf: Enable for local testing only
//TestImages.Png.Blur, // Perf: Enable for local testing only
//TestImages.Png.Indexed, // Perf: Enable for local testing only
TestImages.Png.Splash,
TestImages.Gif.Rings,
//TestImages.Gif.Giphy // Perf: Enable for local testing only
};
}
}