2010-11-10 00:24:00 +01:00
|
|
|
/*
|
|
|
|
* Created by Phil on 09/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)
|
|
|
|
*/
|
|
|
|
|
2011-04-26 09:32:40 +02:00
|
|
|
#include "catch.hpp"
|
2010-11-10 00:24:00 +01:00
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
|
|
|
class TestClass
|
|
|
|
{
|
|
|
|
std::string s;
|
2015-11-04 19:01:28 +01:00
|
|
|
|
2010-11-10 00:24:00 +01:00
|
|
|
public:
|
|
|
|
TestClass()
|
|
|
|
: s( "hello" )
|
|
|
|
{}
|
2015-11-04 19:01:28 +01:00
|
|
|
|
2010-11-10 00:24:00 +01:00
|
|
|
void succeedingCase()
|
2015-11-04 19:01:28 +01:00
|
|
|
{
|
2010-12-14 10:00:09 +01:00
|
|
|
REQUIRE( s == "hello" );
|
2010-11-10 00:24:00 +01:00
|
|
|
}
|
|
|
|
void failingCase()
|
2015-11-04 19:01:28 +01:00
|
|
|
{
|
2010-12-14 10:00:09 +01:00
|
|
|
REQUIRE( s == "world" );
|
2010-11-10 00:24:00 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
2010-12-27 21:51:06 +01:00
|
|
|
|
|
|
|
|
2013-11-19 08:21:03 +01:00
|
|
|
METHOD_AS_TEST_CASE( TestClass::succeedingCase, "A METHOD_AS_TEST_CASE based test run that succeeds", "[class]" )
|
|
|
|
METHOD_AS_TEST_CASE( TestClass::failingCase, "A METHOD_AS_TEST_CASE based test run that fails", "[.][class][failing]" )
|
2010-12-27 21:51:06 +01:00
|
|
|
|
|
|
|
|
|
|
|
struct Fixture
|
|
|
|
{
|
|
|
|
Fixture() : m_a( 1 ) {}
|
2015-11-04 19:01:28 +01:00
|
|
|
|
2010-12-27 21:51:06 +01:00
|
|
|
int m_a;
|
|
|
|
};
|
|
|
|
|
2013-11-19 08:21:03 +01:00
|
|
|
TEST_CASE_METHOD( Fixture, "A TEST_CASE_METHOD based test run that succeeds", "[class]" )
|
2015-11-04 19:01:28 +01:00
|
|
|
{
|
|
|
|
REQUIRE( m_a == 1 );
|
2010-12-27 21:51:06 +01:00
|
|
|
}
|
|
|
|
|
2011-04-12 19:44:58 +02:00
|
|
|
// We should be able to write our tests within a different namespace
|
|
|
|
namespace Inner
|
|
|
|
{
|
2013-11-19 08:21:03 +01:00
|
|
|
TEST_CASE_METHOD( Fixture, "A TEST_CASE_METHOD based test run that fails", "[.][class][failing]" )
|
2015-11-04 19:01:28 +01:00
|
|
|
{
|
|
|
|
REQUIRE( m_a == 2 );
|
2011-04-12 19:44:58 +02:00
|
|
|
}
|
2010-12-27 21:51:06 +01:00
|
|
|
}
|