Skip to content

Commit

Permalink
test: remove test using System.Drawing.Common (#728)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dor-bl authored Jan 26, 2024
1 parent 022b833 commit f55ff9e
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions test/integration/IOS/ClipboardTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,16 +75,6 @@ public void WhenSetClipboardContentTypeIsImage_GetClipboardShouldReturnEncodedBa
Is.True);
}

[Test]
public void WhenSetClipboardImage_GetClipboardImageShouldReturnImage()
{
var imageBytes = _driver.GetScreenshot().AsByteArray;
var testImage = Image.FromStream(new MemoryStream(imageBytes));

_driver.SetClipboardImage(testImage);
Assert.That(() => _driver.GetClipboardImage().Size, Is.EqualTo(testImage.Size));
}

[Test]
public void WhenClipboardHasNoImage_GetClipboardImageShouldReturnNull()
{
Expand Down

0 comments on commit f55ff9e

Please sign in to comment.