Renamed static registries -> registry hub

This commit is contained in:
Phil Nash
2012-08-07 07:58:34 +01:00
parent 6b3ee4a61e
commit da0ae952fc
13 changed files with 57 additions and 56 deletions

View File

@@ -9,7 +9,7 @@
#define TWOBLUECUBES_CATCH_SELF_TEST_HPP_INCLUDED
#include "catch.hpp"
#include "catch_interfaces_static_registries.h"
#include "catch_interfaces_registry_hub.h"
#include "set"
@@ -146,7 +146,7 @@ namespace Catch {
static void runMatching( const std::string& testSpec,
Expected::Result expectedResult ) {
forEach( getStatics().getTestCaseRegistry().getMatchingTestCases( testSpec ),
forEach( getRegistryHub().getTestCaseRegistry().getMatchingTestCases( testSpec ),
MetaTestRunner( expectedResult ) );
}