3

我正在尝试使用以下代码漂亮地打印 STL 数据结构以检查 CppUnit 测试结果

#include <iostream>
#include <utility>
#include <map>
#include <sstream>
template<class S,class T>
std::ostream& operator<<(std::ostream & o, const std::pair<S,T> & p){
      return o << "(" << p.first << ", " << p.second << ")";
}

template<class K, class V>  
std::ostream& operator<<(std::ostream& o, const std::map<K,V> & m){ 
    o << "{ ";
    for(auto it=m.begin();it!=m.end();it++){ 
       o << "{" << it->first <<": " << it->second << "} ";
    }   
    o << " }";
    return o;
}    

但是当我在一些测试中使用这个包含文件时,比如

auto a = std::map<int,int>();
auto b = std::map<int,int>();
CPPUNIT_ASSERT_EQUAL(a,b);

我收到以下错误:

In file included from /usr/include/cppunit/TestCase.h:6:0,
                 from /usr/include/cppunit/TestCaller.h:5,
                 from /usr/include/cppunit/extensions/HelperMacros.h:9,
                 from /home/tcebrian/GIT/compress-sn/test/GraphTest.cpp:1:
/usr/include/cppunit/TestAssert.h: In static member function 'static std::string CppUnit::assertion_traits<T>::toString(const T&) [with T = std::map<int, int>, std::string = std::basic_string<char>]':
/usr/include/cppunit/TestAssert.h:101:5:   instantiated from 'void CppUnit::assertEquals(const T&, const T&, CppUnit::SourceLine, const string&) [with T = std::map<int, int>, std::string = std::basic_string<char>]'
/home/tcebrian/GIT/compress-sn/test/GraphTest.cpp:44:9:   instantiated from here
/usr/include/cppunit/TestAssert.h:49:9: error: cannot bind 'std::basic_ostream<char>' lvalue to 'std::basic_ostream<char>&&'
/usr/include/c++/4.6/ostream:581:5: error:   initializing argument 1 of 'std::basic_ostream<_CharT, _Traits>& std::operator<<(std::basic_ostream<_CharT, _Traits>&&, const _Tp&) [with _CharT = char, _Traits = std::char_traits<char>, _Tp = std::map<int, int>]'
make[3]: *** [CMakeFiles/UnitTester.dir/test/GraphTest.cpp.o] Error 1
make[3]: Leaving directory `/home/tcebrian/GIT/compress-sn/dist/Debug'
make[2]: *** [CMakeFiles/UnitTester.dir/all] Error 2
make[2]: Leaving directory `/home/tcebrian/GIT/compress-sn/dist/Debug'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/home/tcebrian/GIT/compress-sn/dist/Debug'
make: *** [debug] Error 2

但是代码在这个简单的片段中完全有效:

#include <TestUtils.hpp>
#include <map>
#include <utility>
int main(int argc, const char *argv[])
{
    std::cout << std::pair<int,int>() << std::endl;
    std::cout << std::map<int,int>() << std::endl;
    return 0;
}

CppUnit 在做什么来阻止漂亮地打印数据结构?您如何使用 CppUnit 进行漂亮的打印?

4

1 回答 1

1

我不确定您为什么会收到该特定错误(不知何故,它认为他们对 << 运算符的使用被定义为对 std::ostream 进行右值引用),但看起来推荐的方法可能是专门化CppUnit::assertion_traits 模板,如TestAssert.h 所示。像这样的东西:

namespace CppUnit{
    template<class X, class Y>
    struct assertion_traits<std::pair<X,Y>>{
        static bool equal(const std::pair<X,Y> &a, const std::pair<X,Y> &b){
            return a == b;
        }
        static std::string toString(const std::pair<X,Y> &p){
            std::ostringstream o;
            o << "(" << p.first << ", " << p.second << ")";
            return o.str();
        }
    };
}
于 2012-05-16T17:44:46.377 回答