Donate. I desperately need donations to survive due to my health

Get paid by answering surveys Click here

Click here to donate

Remote/Work from Home jobs

Is there an assert in NUnit similar to xUnit's Assert.Collection

In xUnit, I can do this Assert.Collection.

Assert.Collection(
    actual,
    a => Assert.Equal("Foo", a.Property1),
    a => Assert.True(a.Property2)
);

Is there a similar assertion in NUnit?

Thanks!

Comments