CPPUnit array assert
I'm kinda new to C++ and even more CPPUnit. Can开发者_开发百科 somebody tell me what should I use to assert for array values (compare them to expected). Should I use memcmp or is there something better in CPPUnit, C++ in general or any other library?
In modern C++, we compare ranges of data for equality with std::equal.
精彩评论