vote up 9 vote down star
1

As unit testing is not used in our firm, I'm teaching myself to unit test my own code. I'm using the standard .net test framework for some really basic unit testing.

A method of mine returns a IEnumerable<string> and I want to test it's output. So I created an IEnumerable<string> expected to test it against. I thought I remembered there to be a way to Assert.ArePartsEqual or something like that, but I can't seem to find it.

So in short, how do I test if two IEnumerable<string> contain the same strings?

flag

69% accept rate
+1 for the good attitude and professionalism :) – Ian Nelson Feb 13 at 11:57
He:P That's one of the better compliments a junior programmer can get ;) – boris callens Feb 13 at 12:31

3 Answers

vote up 1 vote down check

I don't know which "standard .net test framework" you're referring to, but if it's Visual Studio Team System Unit testing stuff you could use CollectionAssert.

Your test would be like this:

CollectionAssert.AreEqual(ExpectedList, ActualList, "...");

Update: I forgot CollectionAssert needs an ICollection interface, so you'll have to call ActualList.ToList() to get it to compile. Returning the IEnumerable is a good thing, so don't change that just for the tests.

link|flag
Which takes an ICollection, not an IEnumerable... so you'd need to push it into a collection too... – Marc Gravell Feb 17 at 15:21
@Marc Gravell, you're right.. I'll add it to the "answer" – Davy Landman Feb 17 at 19:58
vote up 8 vote down

You want the SequenceEqual() extension method (LINQ):

    string[] x = { "abc", "def", "ghi" };
    List<string> y = new List<string>() { "abc", "def", "ghi" };

    bool isTrue = x.SequenceEqual(y);

or just:

   bool isTrue = x.SequenceEqual(new[] {"abc","def","ghi"});

(it will return false if they are different lengths, or any item is different)

link|flag
So to translate it to something for the unit testing I could go Assert.IsTrue(result.SequenceEqual(expected)); This doesn't supply a helpfull message, but it gets me there so that's ok. – boris callens Feb 13 at 12:35
@boris: It would be really easy to translate my (currently NUnit-based) code to the MS version. Then you get a nice message. – Jon Skeet Feb 13 at 12:39
Yes, I had a look at it. I am currently a bit locked in in timing to experiment with unit testing as I'm doing it kind of unrequested (see OP). But I will try to squeeze in some of that. – boris callens Feb 13 at 15:22
vote up 5 vote down

I have an example of this I used for my "Implementing LINQ to Objects in 60 minutes" talk.

It also in my MoreLinq project. Having tried to c'n'p it in here, it wraps horribly. Just grab from google code...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.