How to force AutoFixture to create ImmutableList

Viewed 458

In System.Collections.Generic there is a very useful ImmutableList. But for this type Autofixture is throwing an exception because it doesn't have public constructor, it's being created like new List<string>().ToImmutableList(). How to tell AutoFixture to populate it?

3 Answers
Related