From 5b02e9a8d4fa3a576c3009163fba970c8c523242 Mon Sep 17 00:00:00 2001 From: Scott Williams Date: Mon, 27 Mar 2017 07:42:16 +0100 Subject: [PATCH] remove ignored tests --- .../Formats/Png/PngEncoderTests.cs | 37 ------------------- 1 file changed, 37 deletions(-) diff --git a/tests/ImageSharp.Tests/Formats/Png/PngEncoderTests.cs b/tests/ImageSharp.Tests/Formats/Png/PngEncoderTests.cs index 31b14601af..51cb0cdc00 100644 --- a/tests/ImageSharp.Tests/Formats/Png/PngEncoderTests.cs +++ b/tests/ImageSharp.Tests/Formats/Png/PngEncoderTests.cs @@ -15,43 +15,6 @@ namespace ImageSharp.Tests public class PngEncoderTests : FileTestBase { - [Fact(Skip ="Slow intergration test")] - public void ImageCanSaveIndexedPng() - { - string path = CreateOutputDirectory("Png", "Indexed"); - - foreach (TestFile file in Files) - { - using (Image image = file.CreateImage()) - { - using (FileStream output = File.OpenWrite($"{path}/{file.FileNameWithoutExtension}.png")) - { - image.MetaData.Quality = 256; - image.Save(output, new PngFormat()); - } - } - } - } - - [Fact(Skip = "Slow intergration test")] - public void ImageCanSavePngInParallel() - { - string path = this.CreateOutputDirectory("Png"); - - Parallel.ForEach( - Files, - file => - { - using (Image image = file.CreateImage()) - { - using (FileStream output = File.OpenWrite($"{path}/{file.FileNameWithoutExtension}.png")) - { - image.SaveAsPng(output); - } - } - }); - } - [Theory] [WithBlankImages(1, 1, PixelTypes.All)] public void WritesFileMarker(TestImageProvider provider)