blob: 54c5b1dfe58aa77c4cb52de63bbc67c1ff9c1bf9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// //////////////////////////////////////////////////////////////////////////
// Implementation file TestFailureInfo.cpp for class TestFailureInfo
// (c)Copyright 2000, Baptiste Lepilleur.
// Created: 2001/09/20
// //////////////////////////////////////////////////////////////////////////
#include "TestFailureInfo.h"
#include <cppunit/Exception.h>
TestFailureInfo::TestFailureInfo( CPPUNIT_NS::Test *failedTest,
CPPUNIT_NS::Exception *thrownException,
bool isError ) :
CPPUNIT_NS::TestFailure( failedTest, thrownException->clone(), isError )
{
}
TestFailureInfo::~TestFailureInfo()
{
}
|