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

Categories

0 votes
271 views
in Technique[技术] by (71.8m points)

c# - Create anonymous enum value from a subset of all values

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

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

1 Answer

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...