Exemplo n.º 1
0
 public DefaultFakeObjectCallFormatter(ArgumentValueFormatter argumentValueFormatter, IFakeManagerAccessor fakeManagerAccessor)
 {
     this.argumentValueFormatter = argumentValueFormatter;
     this.fakeManagerAccessor    = fakeManagerAccessor;
 }
Exemplo n.º 2
0
 public DefaultEnumerableValueFormatter(ArgumentValueFormatter formatter)
 {
     this.formatter = formatter;
 }
Exemplo n.º 3
0
 private static string BuildSignatureDescription(IEnumerable <object> types, ArgumentValueFormatter formatter)
 {
     return(types.ToCollectionString(formatter.GetArgumentValueAsString, ", "));
 }