Catch/include/internal/catch_section.hpp

67 lines
1.8 KiB
C++
Raw Normal View History

2010-11-09 18:24:00 -05:00
/*
* catch_section.hpp
* Catch
*
* 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-09 18:24:00 -05:00
#include <string>
namespace Catch
{
class Section
{
public:
2011-01-28 13:56:26 -05:00
///////////////////////////////////////////////////////////////////////
Section
(
const std::string& name,
const std::string& description,
const SourceLineInfo& lineInfo
2011-01-28 13:56:26 -05:00
)
: m_name( name ),
m_sectionIncluded( Context::getResultCapture().sectionStarted( name, description, lineInfo, m_assertions ) )
2010-11-09 18:24:00 -05:00
{
}
2011-01-26 18:23:33 -05:00
2011-01-28 13:56:26 -05:00
///////////////////////////////////////////////////////////////////////
~Section
()
2010-11-19 03:30:45 -05:00
{
if( m_sectionIncluded )
Context::getResultCapture().sectionEnded( m_name, m_assertions );
2010-11-19 03:30:45 -05:00
}
2011-01-28 13:56:26 -05:00
///////////////////////////////////////////////////////////////////////
// This indicates whether the section should be executed or not
2011-01-28 13:56:26 -05:00
operator bool
()
2010-11-09 18:24:00 -05:00
{
return m_sectionIncluded;
2010-11-09 18:24:00 -05:00
}
2010-11-29 17:33:48 -05:00
2010-11-19 03:30:45 -05:00
private:
2010-11-19 03:30:45 -05:00
std::string m_name;
Counts m_assertions;
bool m_sectionIncluded;
2010-11-09 18:24:00 -05: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-09 18:24:00 -05:00
#endif // TWOBLUECUBES_CATCH_SECTION_HPP_INCLUDED