📄 testfailureinfo.cpp
字号:
/////////////////////////////////////////////////////////////////////////////// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -