mirror of https://github.com/SixLabors/ImageSharp
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.
31 lines
1.2 KiB
31 lines
1.2 KiB
// --------------------------------------------------------------------------------------------------------------------
|
|
// <copyright file="ProcessorTestBase.cs" company="James Jackson-South">
|
|
// Copyright © James Jackson-South and contributors.
|
|
// Licensed under the Apache License, Version 2.0.
|
|
// </copyright>
|
|
// --------------------------------------------------------------------------------------------------------------------
|
|
|
|
namespace ImageProcessor.Tests
|
|
{
|
|
using System.Collections.Generic;
|
|
|
|
/// <summary>
|
|
/// The processor test base.
|
|
/// </summary>
|
|
public abstract class ProcessorTestBase
|
|
{
|
|
/// <summary>
|
|
/// The collection of image files to test against.
|
|
/// </summary>
|
|
public static readonly List<string> Files = new List<string>
|
|
{
|
|
"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"
|
|
};
|
|
}
|
|
}
|
|
|