Hello there. I'm currently trying to establish the unit test framework that we will be using at my company and I was going to use MbUnit3 along with MSpec. However in creating a sample project to show my boss and the other developers how I'd liked to see projects created, I've rand into a bit of a snafu.
I have a 2d array of values I need to compare. We have some older code using MSTest that has a CollectionAssert class that does this. I see that MbUnit2 has a CollectionAssert class that will handle this. The MbUnit3 Assert.AreElementsEqual methods do not handle this input. So, I tried to just change my references to the mbUnit2 assemblies, but then a test I had written earlier that uses Assert.Throws fails (I have not looked to see what the mbUnit2 method is for exceptions cases). I can't reference both mbUnit2 and 3 because I have a namespace collisions. I'm not sure if there is a way to resolve this. Am I missing a method in the new mbUnit3 Assert class that should handle comparing the elements of two 2d arrays? -- You received this message because you are subscribed to the Google Groups "MbUnit.User" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/mbunituser?hl=en.
