generated single include

This commit is contained in:
Craig Henderson 2013-10-12 10:11:37 +01:00
parent aef47282ec
commit 48c9e5b1df
3 changed files with 7912 additions and 7909 deletions

View File

@ -1,24 +1,24 @@
![catch logo](catch-logo-small.png) ![catch logo](catch-logo-small.png)
*v1.0 build 10 (master branch)* *v1.0 build 11 (master branch)*
# New release with significant changes # New release with significant changes
[Please see this page for details - including some breaking changes](docs/whats-changed.md) [Please see this page for details - including some breaking changes](docs/whats-changed.md)
## What's the Catch? ## What's the Catch?
Catch stands for C++ Automated Test Cases in Headers and is a multi-paradigm automated test framework for C++ and Objective-C (and, maybe, C). It is implemented entirely in a set of header files, but is packaged up as a single header for extra convenience. Catch stands for C++ Automated Test Cases in Headers and is a multi-paradigm automated test framework for C++ and Objective-C (and, maybe, C). It is implemented entirely in a set of header files, but is packaged up as a single header for extra convenience.
## How to use it ## How to use it
This documentation comprises these three parts: This documentation comprises these three parts:
* [Why do we need yet another C++ Test Framework?](docs/why-catch.md) * [Why do we need yet another C++ Test Framework?](docs/why-catch.md)
* [Tutorial](docs/tutorial.md) - getting started * [Tutorial](docs/tutorial.md) - getting started
* [Reference section](docs/reference-index.md) - all the details * [Reference section](docs/reference-index.md) - all the details
The documentation will continue until morale improves The documentation will continue until morale improves
## More ## More
* Issues and bugs can be raised on the [Issue tracker on GitHub](https://github.com/philsquared/Catch/issues) * Issues and bugs can be raised on the [Issue tracker on GitHub](https://github.com/philsquared/Catch/issues)
* For discussion or questions please use [the dedicated Google Groups forum](https://groups.google.com/forum/?fromgroups#!forum/catch-forum) * For discussion or questions please use [the dedicated Google Groups forum](https://groups.google.com/forum/?fromgroups#!forum/catch-forum)

View File

@ -1,19 +1,19 @@
/* /*
* Created by Phil on 14/11/2012. * Created by Phil on 14/11/2012.
* Copyright 2012 Two Blue Cubes Ltd. All rights reserved. * Copyright 2012 Two Blue Cubes Ltd. All rights reserved.
* *
* Distributed under the Boost Software License, Version 1.0. (See accompanying * 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) * file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
*/ */
#ifndef TWOBLUECUBES_CATCH_VERSION_HPP_INCLUDED #ifndef TWOBLUECUBES_CATCH_VERSION_HPP_INCLUDED
#define TWOBLUECUBES_CATCH_VERSION_HPP_INCLUDED #define TWOBLUECUBES_CATCH_VERSION_HPP_INCLUDED
#include "catch_version.h" #include "catch_version.h"
namespace Catch { namespace Catch {
// These numbers are maintained by a script // These numbers are maintained by a script
Version libraryVersion( 1, 0, 10, "master" ); Version libraryVersion( 1, 0, 11, "master" );
} }
#endif // TWOBLUECUBES_CATCH_VERSION_HPP_INCLUDED #endif // TWOBLUECUBES_CATCH_VERSION_HPP_INCLUDED

File diff suppressed because it is too large Load Diff