Are there any restrictions on MSTest collection similar to NUnits

I am working on a project using 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 something like this built in or as an addition to the MSTest framework?

+2


source to share


1 answer


Does it help.

The Contrainsts collection in C # here on Stack Overflow.

And this is the specific class this question belongs to.

CollectionAssert class



The assertions are very similar to the assertions presented in the NUnit test.

considers

Bean.

+2


source







All Articles