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!
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
Post a Comment