public void Threshold() { using (Utilities.Media.SwiftBitmap TestObject = new Utilities.Media.SwiftBitmap(@"..\..\Data\Image\Lenna.jpg")) { TestObject.Threshold(0.5f).Save(@".\Testing\LennaThreshold.jpg"); Assert.True(new Utilities.IO.FileInfo(@".\Testing\LennaThreshold.jpg").ReadBinary().SequenceEqual(new Utilities.IO.FileInfo(@"..\..\BitmapResults\LennaThreshold.jpg").ReadBinary())); } }