As a newcomer to TDD I'm stuggling with writing unit tests that deal with collections. For example at the moment I'm trying to come up with some test scearios to essentially test the following method
int Find(List<T> list, Predicate<T> predicate);
Where the method should return the index of the first item in the list list that matches the predicate predicate. So far the only test cases that I've been able to come up with have been along the lines of
- When
listcontains no items - returns-1 - When
listcontains 1 item that matchespredicate- returns0 - When
listcontains 1 item that doesn't matchpredicate- returns-1 - When
listcontains 2 items both of which matchpredicate- return0 - When
listcontains 2 items, the first of which matchpredicate- return0 - etc...
As you can see however these test cases are both numerous and don't satisfactorily test the actual behaviour that I actually want. The mathematician in me wants to do some sort of TDD-by-induction
- When
listcontains no items - returns-1 - When
listcontains N items callpredicateon the first item and then recursively callFindon the remaining N-1 items
However this introduces unneccessary recursion. What sort of test cases should I be looking to write in TDD for the above method?
As an aside the method that I am trying to test really is just Find, simply for a specific collection and predicate (which I can independently write test cases for). Surely there should be a way for me to avoid having to write any of the above test cases and instead simply test that the method calls some other Find implementation (e.g. FindIndex) with the correct arguments?
Note that in any case I'd still like to know how I could unit test Find (or another method like it) even if it turns out that in this case I don't need to.
