catch2/include/internal/catch_test_case_info.h

83 lines
2.4 KiB
C
Raw Normal View History

2012-08-14 20:30:30 +02:00
/*
* Created by Phil on 29/10/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_TEST_CASE_INFO_H_INCLUDED
#define TWOBLUECUBES_CATCH_TEST_CASE_INFO_H_INCLUDED
2012-08-14 20:30:30 +02:00
#include "catch_common.h"
#include "catch_ptr.hpp"
2012-08-14 20:30:30 +02:00
#include <string>
2012-09-15 18:53:27 +02:00
#include <set>
2012-08-14 20:30:30 +02:00
2013-03-13 09:04:50 +01:00
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wpadded"
#endif
2012-08-14 20:30:30 +02:00
namespace Catch {
struct ITestCase;
struct TestCaseInfo {
TestCaseInfo( const std::string& _name,
const std::string& _className,
const std::string& _description,
const std::set<std::string>& _tags,
bool _isHidden,
const SourceLineInfo& _lineInfo );
2012-08-14 20:30:30 +02:00
TestCaseInfo( const TestCaseInfo& other );
2012-08-14 20:30:30 +02:00
std::string name;
std::string className;
std::string description;
std::set<std::string> tags;
std::string tagsAsString;
SourceLineInfo lineInfo;
bool isHidden;
};
class TestCase : protected TestCaseInfo {
public:
TestCase( ITestCase* testCase, const TestCaseInfo& info );
2012-11-22 20:17:20 +01:00
TestCase( const TestCase& other );
2012-08-14 20:30:30 +02:00
TestCase withName( const std::string& _newName ) const;
2012-08-14 20:30:30 +02:00
void invoke() const;
const TestCaseInfo& getTestCaseInfo() const;
2012-08-14 20:30:30 +02:00
bool isHidden() const;
2012-09-15 18:53:27 +02:00
bool hasTag( const std::string& tag ) const;
bool matchesTags( const std::string& tagPattern ) const;
const std::set<std::string>& getTags() const;
2012-08-14 20:30:30 +02:00
2012-11-22 20:17:20 +01:00
void swap( TestCase& other );
bool operator == ( const TestCase& other ) const;
bool operator < ( const TestCase& other ) const;
TestCase& operator = ( const TestCase& other );
2012-08-14 20:30:30 +02:00
private:
Ptr<ITestCase> test;
2012-08-14 20:30:30 +02:00
};
TestCase makeTestCase( ITestCase* testCase,
const std::string& className,
const std::string& name,
const std::string& description,
const SourceLineInfo& lineInfo );
2012-08-14 20:30:30 +02:00
}
2013-03-13 09:04:50 +01:00
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TWOBLUECUBES_CATCH_TEST_CASE_INFO_H_INCLUDED