Imported Upstream version 4.4.0.142

Former-commit-id: 08ca4d6ded648b2ac2eb817c12d5723b52edbb16
This commit is contained in:
Xamarin Public Jenkins
2016-04-28 08:44:23 -04:00
parent d444f0caa4
commit 67cc8417df
39 changed files with 187 additions and 47 deletions

View File

@@ -122,5 +122,17 @@ namespace MonoTests.System.Runtime.Serialization
Assert.IsTrue (s.Contains ("<Flags>All</Flags>"));
}
}
// Bug #37116
[Test]
public void KeyPairOfAny ()
{
var dict = new Dictionary<string, object> ();
dict.Add ("test", new List<string> () { "test entry" });
var dcs = new DataContractSerializer (typeof(Dictionary<string, object>));
dcs.WriteObject (new MemoryStream (), dict);
// Should not throw exception.
}
}
}