testfailureinfo.cpp

来自「c++单元测试框架」· C++ 代码 · 共 33 行

CPP
33
字号
/////////////////////////////////////////////////////////////////////////////// Name:        TestFailureInfo.cpp// Purpose:     Implementation of class TestFailureInfo// Author:      Baptiste Lepilleur// Modified by: Anthon Pang// Created:     2003.09.11// RCS-ID:// Copyright:   (C) 2003 by Baptiste Lepilleur// Licence:     LGPL// Reference:   cppunit/src/qttestrunner/TestFailureInfo.cpp/////////////////////////////////////////////////////////////////////////////#ifdef __BORLANDC__#include <windows.h>#endif#include "TestFailureInfo.h"#ifndef CPPUNIT_EXCEPTION_H#include <cppunit/Exception.h>#endifTestFailureInfo::TestFailureInfo( CPPUNIT_NS::Test *failedTest,                                  CPPUNIT_NS::Exception *thrownException,                                  bool isError )  : CPPUNIT_NS::TestFailure( failedTest, thrownException->clone(), isError ){}TestFailureInfo::~TestFailureInfo(){}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?