Possible Duplicate:
Reference unit tests for common data structures?
I'm trying to implement the IList interface. I've finished my implementation, but I'm not sure if my implementation semantically fits for this interface. Are there tests for prooving that? Tests for the ICollection interface would be appreciate too.
You know what you're supposed to implement so just unit test your class.
There are no 'standard' tests for collections in BCL, as every collection is different. Yours must be doing something special since you're not using List<T>
.