コード例 #1
0
 /// <inheritdoc />
 public object GenerateAnonymousValue(AnonymousValueFixture any, Type type, string propertyName)
 {
     return any.LastName();
 }
コード例 #2
0
 /// <inheritdoc />
 public object GenerateAnonymousValue(AnonymousValueFixture any, Type type, string propertyName)
 {
     return(any.LastName());
 }
コード例 #3
0
 /// <inheritdoc />
 public TValue GenerateAnonymousValue <TObject, TValue>(AnonymousValueFixture any, string propertyName)
 {
     return((TValue)(object)any.LastName());
 }