Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Let's say we have an enum type defined as:

enum Statuses
{
    Completed,
    Pending,
    NotStarted,
    Started
}

I'd like to make Autofixture create a value for me other than e.g. Pending.

So (assuming round-robin generation) I'd like to obtain:

Completed, NotStarted, Started, Completed, NotStarted, ...

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
296 views
Welcome To Ask or Share your Answers For Others

1 Answer

The easiest way to do that is with AutoFixture's Generator<T>:

var statuses = fixture
    .Create<Generator<Statuses>>()
    .Where(s => Statuses.Pending != s)
    .Take(10);

If you only need a single value, but want to be sure that it's not Statuses.Pending, you can do this:

var status = fixture
    .Create<Generator<Statuses>>()
    .Where(s => Statuses.Pending != s)
    .First();

There are other ways, too, but this is the easiest for an ad-hoc query.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...