2010-11-09 18:24:00 -05:00
|
|
|
/*
|
|
|
|
* Created by Phil on 03/11/2010.
|
|
|
|
* Copyright 2010 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)
|
|
|
|
*/
|
|
|
|
#ifndef TWOBLUECUBES_CATCH_SECTION_HPP_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_SECTION_HPP_INCLUDED
|
|
|
|
|
2013-12-03 13:52:41 -05:00
|
|
|
#include "catch_section.h"
|
2010-11-29 14:40:44 -05:00
|
|
|
#include "catch_capture.hpp"
|
2013-04-22 03:19:17 -04:00
|
|
|
#include "catch_compiler_capabilities.h"
|
2013-08-07 13:56:35 -04:00
|
|
|
#include "catch_timer.h"
|
2010-11-29 14:40:44 -05:00
|
|
|
|
2012-05-16 03:02:20 -04:00
|
|
|
namespace Catch {
|
2012-05-15 02:42:26 -04:00
|
|
|
|
2013-12-03 13:52:41 -05:00
|
|
|
Section::Section( SourceLineInfo const& lineInfo,
|
|
|
|
std::string const& name,
|
|
|
|
std::string const& description )
|
|
|
|
: m_info( name, description, lineInfo ),
|
|
|
|
m_sectionIncluded( getCurrentContext().getResultCapture().sectionStarted( m_info, m_assertions ) )
|
|
|
|
{
|
|
|
|
m_timer.start();
|
|
|
|
}
|
2013-07-03 14:14:59 -04:00
|
|
|
|
2013-12-03 13:52:41 -05:00
|
|
|
Section::~Section() {
|
|
|
|
if( m_sectionIncluded )
|
|
|
|
getCurrentContext().getResultCapture().sectionEnded( m_info, m_assertions, m_timer.getElapsedSeconds() );
|
|
|
|
}
|
|
|
|
|
|
|
|
// This indicates whether the section should be executed or not
|
|
|
|
Section::operator bool() {
|
|
|
|
return m_sectionIncluded;
|
|
|
|
}
|
2010-11-09 18:24:00 -05:00
|
|
|
|
2013-12-03 13:52:41 -05:00
|
|
|
|
|
|
|
} // end namespace Catch
|
2010-11-09 18:24:00 -05:00
|
|
|
|
|
|
|
#endif // TWOBLUECUBES_CATCH_SECTION_HPP_INCLUDED
|