2010-11-10 00:24:00 +01:00
|
|
|
/*
|
|
|
|
* ClassTests.cpp
|
|
|
|
* Catch - Test
|
|
|
|
*
|
|
|
|
* 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;
|
|
|
|
|
|
|
|
public:
|
|
|
|
TestClass()
|
|
|
|
: s( "hello" )
|
|
|
|
{}
|
|
|
|
|
|
|
|
void succeedingCase()
|
|
|
|
{
|
2010-12-14 10:00:09 +01:00
|
|
|
REQUIRE( s == "hello" );
|
2010-11-10 00:24:00 +01:00
|
|
|
}
|
|
|
|
void failingCase()
|
|
|
|
{
|
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
|
|
|
|
|
|
|
|
2011-02-16 20:02:09 +01:00
|
|
|
METHOD_AS_TEST_CASE( TestClass::succeedingCase, "./succeeding/TestClass/succeedingCase", "A method based test run that succeeds" )
|
|
|
|
METHOD_AS_TEST_CASE( TestClass::failingCase, "./failing/TestClass/failingCase", "A method based test run that fails" )
|
2010-12-27 21:51:06 +01:00
|
|
|
|
|
|
|
|
|
|
|
struct Fixture
|
|
|
|
{
|
|
|
|
Fixture() : m_a( 1 ) {}
|
|
|
|
|
|
|
|
int m_a;
|
|
|
|
};
|
|
|
|
|
2011-01-14 09:47:43 +01:00
|
|
|
TEST_CASE_METHOD( Fixture, "./succeeding/Fixture/succeedingCase", "A method based test run that succeeds" )
|
2010-12-27 21:51:06 +01:00
|
|
|
{
|
|
|
|
REQUIRE( m_a == 1 );
|
|
|
|
}
|
|
|
|
|
2011-04-12 19:44:58 +02:00
|
|
|
// We should be able to write our tests within a different namespace
|
|
|
|
namespace Inner
|
|
|
|
{
|
|
|
|
TEST_CASE_METHOD( Fixture, "./failing/Fixture/failingCase", "A method based test run that fails" )
|
|
|
|
{
|
|
|
|
REQUIRE( m_a == 2 );
|
|
|
|
}
|
2010-12-27 21:51:06 +01:00
|
|
|
}
|