catch2/include/internal/catch_section.hpp

50 lines
1.4 KiB
C++
Raw Normal View History

2010-11-10 00:24:00 +01: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
#include "catch_capture.hpp"
#include "catch_totals.hpp"
2010-11-10 00:24:00 +01:00
#include <string>
2012-05-15 08:42:26 +02:00
namespace Catch{
class Section {
2010-11-10 00:24:00 +01:00
public:
2012-05-15 08:42:26 +02:00
Section( const std::string& name,
const std::string& description,
const SourceLineInfo& lineInfo )
: m_name( name ),
m_sectionIncluded( Context::getResultCapture().sectionStarted( name, description, lineInfo, m_assertions ) )
2012-05-15 08:42:26 +02:00
{}
2011-01-27 00:23:33 +01:00
2012-05-15 08:42:26 +02:00
~Section() {
if( m_sectionIncluded )
Context::getResultCapture().sectionEnded( m_name, m_assertions );
2010-11-19 09:30:45 +01:00
}
// This indicates whether the section should be executed or not
2012-05-15 08:42:26 +02:00
operator bool() {
return m_sectionIncluded;
2010-11-10 00:24:00 +01:00
}
2010-11-29 23:33:48 +01:00
2010-11-19 09:30:45 +01:00
private:
2010-11-19 09:30:45 +01:00
std::string m_name;
Counts m_assertions;
bool m_sectionIncluded;
2010-11-10 00:24:00 +01:00
};
} // end namespace Catch
#define INTERNAL_CATCH_SECTION( name, desc ) \
if( Catch::Section INTERNAL_CATCH_UNIQUE_NAME( catch_internal_Section ) = Catch::Section( name, desc, CATCH_INTERNAL_LINEINFO ) )
2010-11-10 00:24:00 +01:00
#endif // TWOBLUECUBES_CATCH_SECTION_HPP_INCLUDED