Browse Source

test fixes

pull/25/head
Anton Firszov 9 years ago
parent
commit
06eaf8610c
  1. 2
      tests/ImageSharp.Tests/Formats/Jpg/JpegTests.cs
  2. 7
      tests/ImageSharp.Tests/TestImages.cs

2
tests/ImageSharp.Tests/Formats/Jpg/JpegTests.cs

@ -63,7 +63,7 @@ namespace ImageSharp.Tests.Formats.Jpg
}
public static IEnumerable<object[]> AllBmpFiles
=> TestImages.Jpeg.All.Select(fn => new object[] {fn});
=> TestImages.Bmp.All.Select(fn => new object[] {fn});
[Theory]
[MemberData(nameof(AllBmpFiles))]

7
tests/ImageSharp.Tests/TestImages.cs

@ -43,8 +43,7 @@ namespace ImageSharp.Tests
public static string GammaDalaiLamaGray => folder + "gamma_dalai_lama_gray.jpg";
public static readonly string[] All = new[]
{
public static readonly string[] All = {
Cmyk, Exif, Floorplan, Calliphora, Turtle, Fb, Progress, GammaDalaiLamaGray
};
}
@ -58,6 +57,10 @@ namespace ImageSharp.Tests
public static string F => folder + "F.bmp";
public static string NegHeight => folder + "neg_height.bmp";
public static readonly string[] All = {
Car, F, NegHeight
};
}
public static class Gif

Loading…
Cancel
Save