Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan McGovern <alan@xamarin.com>2012-10-22 06:57:20 +0400
committerAlan McGovern <alan@xamarin.com>2012-10-22 06:57:20 +0400
commit8c06ad3203cfcad82b488906a060736c3e127df3 (patch)
tree89dc558dbf1eb6e730603f17ec46a136b6c7ebee /mcs/class/WindowsBase
parentc399f1024b2a687a09977c786ef0bc933bb18c71 (diff)
[WindowsBase] Nuke a broken test
This looks like it's testing the behaviour of a stream with invalid data which is already tested (correctly) in another test.
Diffstat (limited to 'mcs/class/WindowsBase')
-rw-r--r--mcs/class/WindowsBase/Test/System.IO.Packaging/PackageTest.cs9
1 files changed, 0 insertions, 9 deletions
diff --git a/mcs/class/WindowsBase/Test/System.IO.Packaging/PackageTest.cs b/mcs/class/WindowsBase/Test/System.IO.Packaging/PackageTest.cs
index 7eeca8fe307..ae7c5945de9 100644
--- a/mcs/class/WindowsBase/Test/System.IO.Packaging/PackageTest.cs
+++ b/mcs/class/WindowsBase/Test/System.IO.Packaging/PackageTest.cs
@@ -268,15 +268,6 @@ namespace System.IO.Packaging.Tests {
}
[Test]
- [ExpectedException (typeof (FileFormatException))]
- public void ReadableSeekableFullStream ()
- {
- stream = new FakeStream (true, false, true);
- stream.Write (new byte [10], 0, 10);
- package = Package.Open (stream);
- }
-
- [Test]
[ExpectedException (typeof (ArgumentException))]
public void ReadOnlyAccess ()
{