Files
Catch2/include/internal/catch_message.cpp
T

59 lines
1.8 KiB
C++
Raw Normal View History

2013-02-02 19:58:04 +00:00
/*
* Created by Phil Nash on 1/2/2013.
* Copyright 2013 Two Blue Cubes Ltd. All rights reserved.
*
* Distributed under the Boost Software License, Version 1.0. (See accompanying
* file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
*/
#include "catch_message.h"
#include "catch_interfaces_capture.h"
#include "catch_uncaught_exceptions.h"
2013-02-02 19:58:04 +00:00
namespace Catch {
2013-07-03 19:14:59 +01:00
2013-02-02 19:58:04 +00:00
MessageInfo::MessageInfo( std::string const& _macroName,
SourceLineInfo const& _lineInfo,
ResultWas::OfType _type )
: macroName( _macroName ),
lineInfo( _lineInfo ),
type( _type ),
sequence( ++globalCount )
{}
2013-07-03 19:14:59 +01:00
bool MessageInfo::operator==( MessageInfo const& other ) const {
return sequence == other.sequence;
}
bool MessageInfo::operator<( MessageInfo const& other ) const {
return sequence < other.sequence;
}
2013-02-02 19:58:04 +00:00
// This may need protecting if threading support is added
unsigned int MessageInfo::globalCount = 0;
2013-07-03 19:14:59 +01:00
2013-02-02 19:58:04 +00:00
////////////////////////////////////////////////////////////////////////////
2013-07-03 19:14:59 +01:00
Catch::MessageBuilder::MessageBuilder( std::string const& macroName,
SourceLineInfo const& lineInfo,
ResultWas::OfType type )
:m_info(macroName, lineInfo, type) {}
////////////////////////////////////////////////////////////////////////////
2013-06-28 17:09:57 +01:00
ScopedMessage::ScopedMessage( MessageBuilder const& builder )
: m_info( builder.m_info )
{
m_info.message = builder.m_stream.str();
getResultCapture().pushScopedMessage( m_info );
2013-02-02 19:58:04 +00:00
}
2014-05-19 18:57:14 +01:00
2013-06-28 17:09:57 +01:00
ScopedMessage::~ScopedMessage() {
if ( !uncaught_exceptions() ){
getResultCapture().popScopedMessage(m_info);
}
2013-02-02 19:58:04 +00:00
}
} // end namespace Catch