Moar reformatting

This commit is contained in:
Phil Nash 2012-05-15 23:58:23 +01:00
parent d0be9ed5d9
commit c67a7eef2b
8 changed files with 140 additions and 429 deletions

View file

@ -8,10 +8,9 @@
#ifndef TWOBLUECUBES_CATCH_TOTALS_HPP_INCLUDED
#define TWOBLUECUBES_CATCH_TOTALS_HPP_INCLUDED
namespace Catch
{
struct Counts
{
namespace Catch {
struct Counts {
Counts() : passed( 0 ), failed( 0 ) {}
Counts operator - ( const Counts& other ) const {
@ -29,8 +28,8 @@ namespace Catch
std::size_t failed;
};
struct Totals
{
struct Totals {
Totals operator - ( const Totals& other ) const {
Totals diff;
diff.assertions = assertions - other.assertions;