Does anyone know where I can find unit tests that will test std::map
?
The reason I ask is because I have written a class that acts as a replacment for std::map
and has virtually all the same functionality, so unit tests for std::map
will be suitable for my class, too.
Of course, I can write my own, but if someone has already written extensive tests for this then that would save me a lot of time and would hopefully cover things that I might have missed.
Thanks.