tags:

views:

74

answers:

1

I am working on a project utilizing MSTest and I need similar constraints for testing arrays/lists that NUnit provides (http://www.nunit.org/index.php?p=collectionConstraints&r=2.4.8)

Is there anything similar built-in or as an add-on to the MSTest framework?

+1  A: 

Hi Jon,

Does this help.

Collection Contrainsts in C# here at Stack Overflow.

And this, the specific class that the question is relating to.

CollectionAssert Class

The asserts are very similar to that provided in the NUnit test.

regards

Bob.

scope_creep
wow, thanks. the way it is named made it difficult to discover.
Jon Erickson