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)
|
|
|
|
*/
|
2012-09-17 07:42:29 +02:00
|
|
|
#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 <string>
|
2012-09-15 18:53:27 +02:00
|
|
|
#include <set>
|
2012-08-14 20:30:30 +02:00
|
|
|
|
|
|
|
namespace Catch {
|
|
|
|
|
|
|
|
struct ITestCase;
|
|
|
|
|
|
|
|
class TestCaseInfo {
|
|
|
|
public:
|
|
|
|
TestCaseInfo();
|
|
|
|
|
|
|
|
TestCaseInfo( ITestCase* testCase,
|
2012-11-04 22:11:59 +01:00
|
|
|
const std::string& className,
|
|
|
|
const std::string& name,
|
|
|
|
const std::string& description,
|
2012-08-14 20:30:30 +02:00
|
|
|
const SourceLineInfo& lineInfo );
|
|
|
|
|
|
|
|
|
|
|
|
TestCaseInfo( const TestCaseInfo& other, const std::string& name );
|
2012-08-23 09:38:27 +02:00
|
|
|
TestCaseInfo( const TestCaseInfo& other );
|
2012-08-14 20:30:30 +02:00
|
|
|
|
|
|
|
void invoke() const;
|
2012-11-04 22:11:59 +01:00
|
|
|
|
|
|
|
const std::string& getClassName() const;
|
2012-08-14 20:30:30 +02:00
|
|
|
const std::string& getName() const;
|
|
|
|
const std::string& getDescription() const;
|
|
|
|
const SourceLineInfo& getLineInfo() const;
|
|
|
|
bool isHidden() const;
|
2012-09-15 18:53:27 +02:00
|
|
|
bool hasTag( const std::string& tag ) const;
|
2012-09-21 08:48:03 +02:00
|
|
|
bool matchesTags( const std::string& tagPattern ) const;
|
2012-09-26 19:38:26 +02:00
|
|
|
const std::set<std::string>& getTags() const;
|
2012-08-14 20:30:30 +02:00
|
|
|
|
|
|
|
void swap( TestCaseInfo& other );
|
|
|
|
bool operator == ( const TestCaseInfo& other ) const;
|
|
|
|
bool operator < ( const TestCaseInfo& other ) const;
|
2012-08-23 09:38:27 +02:00
|
|
|
TestCaseInfo& operator = ( const TestCaseInfo& other );
|
2012-08-14 20:30:30 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
Ptr<ITestCase> m_test;
|
2012-11-04 22:11:59 +01:00
|
|
|
std::string m_className;
|
2012-08-14 20:30:30 +02:00
|
|
|
std::string m_name;
|
|
|
|
std::string m_description;
|
2012-09-15 18:53:27 +02:00
|
|
|
std::set<std::string> m_tags;
|
2012-09-12 19:40:24 +02:00
|
|
|
SourceLineInfo m_lineInfo;
|
|
|
|
bool m_isHidden;
|
2012-08-14 20:30:30 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2012-09-17 07:42:29 +02:00
|
|
|
#endif // TWOBLUECUBES_CATCH_TEST_CASE_INFO_H_INCLUDED
|