示例#1
0
 public void Deserialize(IXunitSerializationInfo info)
 {
     Source   = FileContent.From(info.GetValue <string>(nameof(Source)));
     Expected = FileContent.From(info.GetValue <string>(nameof(Expected)));
 }
示例#2
0
 public ConvertCase(FileContent source, FileContent expected)
 {
     Source   = source;
     Expected = expected;
 }