public void op_GetObjectData_SerializationInfoNull_StreamingContext() { var context = new StreamingContext(StreamingContextStates.All); ISerializable value = new Month(1999, 12); // ReSharper disable AssignNullToNotNullAttribute Assert.Throws <ArgumentNullException>(() => value.GetObjectData(null, context)); // ReSharper restore AssignNullToNotNullAttribute }
public void op_GetObjectData_SerializationInfo_StreamingContext() { var info = new SerializationInfo(typeof(Month), new FormatterConverter()); var context = new StreamingContext(StreamingContextStates.All); const string expected = "12/01/1999 00:00:00"; ISerializable value = new Month(1999, 12); value.GetObjectData(info, context); var actual = info.GetString("_value"); Assert.Equal(expected, actual); }