You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When attempting to fake types that have immutable collection properties (i.e. IImmutableList), AutoFaker.Generate<T>() throws an exception due to not being able to find a parameterless constructor for the immutable type, since immutable collections are instead created via the type's .Create() method.
The text was updated successfully, but these errors were encountered:
When attempting to fake types that have immutable collection properties (i.e. IImmutableList),
AutoFaker.Generate<T>()
throws an exception due to not being able to find a parameterless constructor for the immutable type, since immutable collections are instead created via the type's.Create()
method.The text was updated successfully, but these errors were encountered: