我已将googletest集成到我们的MFC应用程序中。但是在编写涉及COleDateTime对象的测试时,我遇到了以下警告:
1>gtest/gtest-printers.h(169) : warning C4244: 'initializing' : conversion from 'DATE' to 'const testing::internal::BiggestInt', possible loss of data
1>gtest/gtest-printers.h(168) : while compiling class template member function 'void testing::internal2::TypeWithoutFormatter<T,kTypeKind>::PrintValue(const T &,std::ostream *)'
测试如下:
TEST(FunctionTest, SumDays)
{
COleDateTime res = SumDays(COleDateTime(2010,10,31,0,0,0), 1);
EXPECT_EQ(COleDateTime(2010,11,01,0,0,0), res);
}
问题是我无法添加&lt;&lt;文档宣布的运算符或PrintTo方法。 分配更多测试将涉及日期值,因此我想避免文档引用的内联解决方案。
有没有一个很好的解决方案来控制COleDateTime值的打印字符串?
当前输出如下:
<failure message="Value of: res
 Actual: 40512
Expected: COleDateTime(2010,10,30,0,0,0)
Which is: 40481" type=""><![CDATA[.\Code.cpp:6837
Value of: res
Actual: 40512
Expected: COleDateTime(2010,10,30,0,0,0)
Which is: 40481]]></failure>
请注意实际值!
答案 0 :(得分:0)
我有同样的问题并想通了 - 与Caerbanogs语句相反 - 实现PrintTo
- 函数确实有帮助。一件重要的事情是确保该类的“扩展”googletest的行为具有与PrintTo
- 函数完全相同的名称空间。
在这种情况下,这是名称空间ATL
!
这导致COleDateTime
和COleDateTimeSpan
的以下解决方案:
namespace ATL {
void PrintTo(const COleDateTime& dtDatum, ::std::ostream* os)
{
// I want an additional Format, so I append a human readable notion
*os << dtDatum.m_dt << " (" << (LPCSTR)dtDatum.Format(_T("%d.%m.%Y %H:%M:%S")) << ")";
}
void PrintTo(const COleDateTimeSpan& dsSpanne, ::std::ostream* os)
{
*os << dsSpanne.m_span;
}
}
只需将其放入您可以包含在所有googletest项目中的地方(如果您有多个项目)。
最后它对我有用: - )