91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

資源簡介

單元測試工具 cppunit 的最新版本

資源截圖

代碼片段和文件信息

//?//////////////////////////////////////////////////////////////////////////
//?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()??<??CPPUNIT_NS::stdCOut()??<??printTime(?m_model->totalElapsedTime()?);
??CPPUNIT_NS::stdCOut()??<??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()??<testPathFor(?testIndex?).getChildTest()->getName();
??CPPUNIT_NS::stdCOut()??<
??if?(?m_model->childCountFor(?testIndex?)?==?0?)
????indent+=?std::string(?indentLength?‘?‘?);
??else
????indent+=?“|“?+?std::string(?indentLength?-1?‘?‘?);

??for?(?int?index?=0;?index?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()?<??CPPUNIT_NS::stdCOut()?<}


void?
ClockerListener::printTime(?double?time?)?const
{
??CPPUNIT_NS::stdCOut()?<}

評論

共有 條評論