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
|
|
|
|
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;
|
|
|
|
|
2012-11-25 12:19:55 +01:00
|
|
|
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
|
|
|
|
2012-11-25 12:19:55 +01:00
|
|
|
TestCaseInfo( const TestCaseInfo& other );
|
2012-08-14 20:30:30 +02:00
|
|
|
|
2012-11-25 12:19:55 +01:00
|
|
|
std::string name;
|
|
|
|
std::string className;
|
|
|
|
std::string description;
|
|
|
|
std::set<std::string> tags;
|
2013-03-28 23:13:31 +01:00
|
|
|
std::string tagsAsString;
|
2012-11-25 12:19:55 +01:00
|
|
|
SourceLineInfo lineInfo;
|
2012-12-05 09:40:53 +01:00
|
|
|
bool isHidden;
|
2012-11-25 12:19:55 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
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
|
|
|
|
2012-11-25 12:19:55 +01:00
|
|
|
TestCase withName( const std::string& _newName ) const;
|
|
|
|
|
2012-08-14 20:30:30 +02:00
|
|
|
void invoke() const;
|
2012-11-04 22:11:59 +01:00
|
|
|
|
2012-11-25 12:19:55 +01:00
|
|
|
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;
|
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
|
|
|
|
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:
|
2012-11-25 12:19:55 +01:00
|
|
|
Ptr<ITestCase> test;
|
2012-08-14 20:30:30 +02:00
|
|
|
};
|
2012-11-25 12:19:55 +01: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
|
|
|
|
|
2012-09-17 07:42:29 +02:00
|
|
|
#endif // TWOBLUECUBES_CATCH_TEST_CASE_INFO_H_INCLUDED
|