资源简介
鼎鼎大名的XUnit系列C++方面产品库.
开源的单元测试框架. 算半自动化吧. 只是提供了一个框架.
没听过CPPUnit? JUnit听过吧? 还是没听过? 那我怀疑你根本不知道什么是单元测试.
代码片段和文件信息
// //////////////////////////////////////////////////////////////////////////
// Implementation file ClockerListener.cpp for class ClockerListener
// (c)Copyright 2000 Baptiste Lepilleur.
// Created: 2002/04/19
// //////////////////////////////////////////////////////////////////////////
#include
#include
#include “ClockerListener.h“
#include “ClockerModel.h“
#include
ClockerListener::ClockerListener( ClockerModel *model
bool text )
: m_model( model )
m_text( text )
{
}
ClockerListener::~ClockerListener()
{
}
void
ClockerListener::startTestRun( CPPUNIT_NS::Test *test
CPPUNIT_NS::TestResult *eventManager )
{
m_model->setExpectedTestCount( test->countTestCases() *2 );
}
void
ClockerListener::endTestRun( CPPUNIT_NS::Test *test
CPPUNIT_NS::TestResult *eventManager )
{
if ( m_text )
printStatistics();
}
void
ClockerListener::startTest( CPPUNIT_NS::Test *test )
{
m_model->enterTest( test false );
}
void
ClockerListener::endTest( CPPUNIT_NS::Test *test )
{
m_model->exitTest( test false );
}
void
ClockerListener::startSuite( CPPUNIT_NS::Test *suite )
{
m_model->enterTest( suite true );
}
void
ClockerListener::endSuite( CPPUNIT_NS::Test *suite )
{
m_model->exitTest( suite true );
}
void
ClockerListener::printStatistics() const
{
printTest( 0 ““ );
CPPUNIT_NS::stdCOut() << “\n“;
CPPUNIT_NS::stdCOut() << “Total elapsed time: “;
printTime( m_model->totalElapsedTime() );
CPPUNIT_NS::stdCOut() << “ average test case time: “;
printTime( m_model->averageTestCaseTime() );
}
void
ClockerListener::printTest( int testIndex
const std::string &indentString ) const
{
std::string indent = indentString;
const int indentLength = 3;
printTestIndent( indentString indentLength );
printTime( m_model->testTimeFor( testIndex ) );
CPPUNIT_NS::stdCOut() << m_model->testPathFor( testIndex ).getChildTest()->getName();
CPPUNIT_NS::stdCOut() << “\n“;
if ( m_model->childCountFor( testIndex ) == 0 )
indent+= std::string( indentLength ‘ ‘ );
else
indent+= “|“ + std::string( indentLength -1 ‘ ‘ );
for ( int index =0; index < m_model->childCountFor( testIndex ); ++index )
printTest( m_model->childAtFor( testIndex index ) indent );
}
void
ClockerListener::printTestIndent( const std::string &indent
const int indentLength ) const
{
if ( indent.empty() )
return;
CPPUNIT_NS::stdCOut() << “ “;
CPPUNIT_NS::stdCOut() << indent.substr( 0 indent.length() - indentLength ) ;
CPPUNIT_NS::stdCOut() << “+“ << std::string( indentLength -1 ‘-‘ );
}
void
ClockerListener::printTime( double time ) const
{
CPPUNIT_NS::stdCOut() << ‘(‘ << ClockerModel::timeStringFor( time ) << “s) “;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 271151 2008-02-20 13:59 cppunit-1.12.1\aclocal.m4
文件 286 2002-09-23 13:43 cppunit-1.12.1\AUTHORS
文件 129 2003-06-05 14:18 cppunit-1.12.1\BUGS
文件 134056 2008-02-07 16:46 cppunit-1.12.1\ChangeLog
文件 2249 2002-09-17 02:35 cppunit-1.12.1\CodingGuideLines.txt
文件 5056 2001-06-17 23:47 cppunit-1.12.1\config\ac_create_prefix_config_h.m4
文件 739 2001-07-08 00:05 cppunit-1.12.1\config\ac_cxx_have_sstream.m4
文件 837 2001-09-20 12:18 cppunit-1.12.1\config\ac_cxx_have_strstream.m4
文件 717 2001-06-03 07:26 cppunit-1.12.1\config\ac_cxx_namespaces.m4
文件 998 2001-06-03 06:29 cppunit-1.12.1\config\ac_cxx_rtti.m4
文件 907 2001-06-03 07:26 cppunit-1.12.1\config\ac_cxx_string_compare_string_first.m4
文件 1253 2003-05-08 04:07 cppunit-1.12.1\config\ac_dll.m4
文件 1117 2004-02-19 04:45 cppunit-1.12.1\config\ax_cxx_gcc_abi_demangle.m4
文件 731 2007-01-27 12:19 cppunit-1.12.1\config\ax_cxx_have_isfinite.m4
文件 1274 2007-01-12 12:24 cppunit-1.12.1\config\bb_enable_doxygen.m4
文件 44892 2008-02-18 04:10 cppunit-1.12.1\config\config.guess
文件 2621 2008-02-20 14:04 cppunit-1.12.1\config\config.h.in
文件 33387 2008-02-18 04:10 cppunit-1.12.1\config\config.sub
文件 17867 2008-02-10 10:55 cppunit-1.12.1\config\depcomp
文件 13620 2008-02-10 10:55 cppunit-1.12.1\config\install-sh
文件 199984 2008-02-02 21:28 cppunit-1.12.1\config\ltmain.sh
文件 11135 2008-02-10 10:55 cppunit-1.12.1\config\missing
文件 750156 2008-02-20 13:59 cppunit-1.12.1\configure
文件 4307 2008-02-20 13:59 cppunit-1.12.1\configure.in
文件 4359 2002-04-21 20:32 cppunit-1.12.1\contrib\bc5\bcc-makefile.zip
文件 5147 2008-02-20 14:04 cppunit-1.12.1\contrib\msvc\AddingUnitTestMethod.dsm
文件 11405 2008-02-20 14:04 cppunit-1.12.1\contrib\msvc\CppUnit.WWTpl
文件 462 2008-02-20 14:04 cppunit-1.12.1\contrib\msvc\readme.txt
文件 3925 2006-03-05 04:58 cppunit-1.12.1\contrib\xm
文件 1960 2002-04-18 17:58 cppunit-1.12.1\contrib\xm
............此处省略1079个文件信息
相关资源
- 棋盘格标定图
- 五子棋,MFC,VC6.0
- 基于GDAL VC6.0的遥感影像K均值分类程序
- VC6.0 socket编程,多客户端,单服务器
- TeeChart绘图控件破解版TeChart.Pro.v5 -V
- VC6.0配置HDF5环境
- 进销存管理系统 VC6.0 C++
- 影碟出租系统
- vc6.0下实现单击弹出对话框
- php-5.3.5-Win32-VC6-x64
- Gerver View 源码
- Matlab6.5 与 VC6 利用动态链接库实现混
- surf特征提取与匹配
- Visual Assist X_最新破解版破解所有版本
- 基于vc6.0的OpenGL小动画代码
- mfc配合listbox操作数据库
- 虹膜识别开源
- 盛大开源哼唱识别代码(C++)
- 超详细 snort源码分析
- DES MFC实现在VC6.0中
- VC6.0+MFC+USBCAN上位机通信控制
- 队列应用银行排队问题模拟:计算客户
- vc6.0实现的局域网聊天室MFC+SOCKRT
- VC6.0贪吃蛇MFC
- window开源asn.1
- VC6下开发的des邮件加密系统
- 标准化考试系统 C++课设
- DEM——三维地形可视化
- MFC ADO方法链接SQlServer数据库vc6实现
- 推箱子游戏VC6源代码 仓库番游戏VC6源
评论
共有 条评论