0

我已经开始使用 CppUnit 库了。一切正常,但现在,我被使用断言迭代器卡住了CPPUNIT_ASSERT_EQUAL。所以有我的代码:

void TestingClass::test_adjacent_find()
{
    // Set up
    int a [5] = {1,2,3,3,5};
    int b [5] = {1,2,3,4,5};
    int c [1] = {1};

    std::list<int> lst;
    lst.push_back(1);
    lst.push_back(1);
    lst.push_back(5);

    // Check
    CPPUNIT_ASSERT_EQUAL(a+2, my_adjacent_find(a , a+5, pred_eq<int>));
    CPPUNIT_ASSERT_EQUAL(b+5, my_adjacent_find(b, b+5, pred_eq<int>));
    CPPUNIT_ASSERT_EQUAL(c+1, my_adjacent_find(c, c+1, pred_eq<int>));
    CPPUNIT_ASSERT_EQUAL(lst.begin(), lst.end()); // problem is here
}

当我运行此测试时,我收到以下错误。

/opt/local/include/cppunit/TestAssert.h:49:13: 
Invalid operands to binary expression 
('OStringStream' (aka 'basic_ostringstream<char>') 
and 'const std::_List_iterator<int>')

如果我用迭代器注释该行,那么它编译没有任何问题。那么我做错了什么?我应该如何断言两个迭代器的相等性?顺便说一句,我使用 xcode 4.4。

4

1 回答 1

3

请参阅以下CPPUNIT_ASSERT_EQUAL宏文档TestAssert.h

#define CPPUNIT_ASSERT_EQUAL(expected,actual)

要求expectedactual参数:

  • 它们是完全相同的类型
  • 它们可以使用运算符 << 序列化为 std::strstream
  • 它们可以使用运算符 == 进行比较。

最后两个要求(序列化和比较)可以通过专门化CppUnit::assertion_traits.

所以问题的根本原因是std::list::iterator无法序列化为std::strstream. CppUnit::assertion_traits您需要按照文档描述为它编写自己的专业化,或者只是避免CPPUNIT_ASSERT_EQUAL和使用CPPUNIT_ASSERT

CPPUNIT_ASSERT(lst.begin() == lst.end());
于 2012-09-14T13:37:35.783 回答