Browse Source

Removes saving of the test images

Former-commit-id: c557086f1d707e706f0f0826969f50d304a98fbf
Former-commit-id: 51ec2a027d6b8982e4a3f22905e2ca16e417f10c
pull/17/head
Thomas Broust 11 years ago
parent
commit
7b9ba738fc
  1. 3
      src/ImageProcessor.UnitTests/ImageFactoryUnitTests.cs

3
src/ImageProcessor.UnitTests/ImageFactoryUnitTests.cs

@ -488,7 +488,6 @@ namespace ImageProcessor.UnitTests
[Test]
public void ImageIsRotatedInsideAndResized()
{
int i = 0;
foreach (ImageFactory imageFactory in this.ListInputImages())
{
Image original = (Image)imageFactory.Image.Clone();
@ -496,8 +495,6 @@ namespace ImageProcessor.UnitTests
imageFactory.Image.Width.Should().NotBe(original.Width, "because the rotated image dimensions should have changed");
imageFactory.Image.Height.Should().NotBe(original.Height, "because the rotated image dimensions should have changed");
imageFactory.Format(new ImageProcessor.Imaging.Formats.JpegFormat()).Save("./output/rotateinsideresized-" + i++.ToString() + ".jpg");
}
}

Loading…
Cancel
Save