From 896a04f5e8deee249d7be6eaab0dc875a684e1de Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Wed, 5 Jan 2011 21:16:54 +0000 Subject: [PATCH] More project refactoring --- Test/Test.xcodeproj/project.pbxproj | 4 ++-- catch.hpp | 2 +- internal/catch_reporter_registry.hpp | 2 +- internal/catch_runner_impl.hpp | 2 +- internal/{catch_registry.hpp => catch_test_registry.hpp} | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) rename internal/{catch_registry.hpp => catch_test_registry.hpp} (99%) diff --git a/Test/Test.xcodeproj/project.pbxproj b/Test/Test.xcodeproj/project.pbxproj index 3b733876..88be5b00 100644 --- a/Test/Test.xcodeproj/project.pbxproj +++ b/Test/Test.xcodeproj/project.pbxproj @@ -44,7 +44,7 @@ 4AA7EA9112A438C7005A0B97 /* MiscTests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MiscTests.cpp; sourceTree = ""; }; 4AFC341512809A36003A0C29 /* catch_capture.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = catch_capture.hpp; path = ../internal/catch_capture.hpp; sourceTree = SOURCE_ROOT; }; 4AFC341612809A36003A0C29 /* catch_common.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = catch_common.h; path = ../internal/catch_common.h; sourceTree = SOURCE_ROOT; }; - 4AFC341712809A36003A0C29 /* catch_registry.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = catch_registry.hpp; path = ../internal/catch_registry.hpp; sourceTree = SOURCE_ROOT; }; + 4AFC341712809A36003A0C29 /* catch_test_registry.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = catch_test_registry.hpp; path = ../internal/catch_test_registry.hpp; sourceTree = SOURCE_ROOT; }; 4AFC341812809A36003A0C29 /* catch_reporter_registry.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = catch_reporter_registry.hpp; path = ../internal/catch_reporter_registry.hpp; sourceTree = SOURCE_ROOT; }; 4AFC341912809A36003A0C29 /* catch_resultinfo.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = catch_resultinfo.hpp; path = ../internal/catch_resultinfo.hpp; sourceTree = SOURCE_ROOT; }; 4AFC341A12809A36003A0C29 /* catch_runner_impl.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = catch_runner_impl.hpp; path = ../internal/catch_runner_impl.hpp; sourceTree = SOURCE_ROOT; }; @@ -109,7 +109,7 @@ children = ( 4AFC359B1281F00B003A0C29 /* catch_section.hpp */, 4AFC341512809A36003A0C29 /* catch_capture.hpp */, - 4AFC341712809A36003A0C29 /* catch_registry.hpp */, + 4AFC341712809A36003A0C29 /* catch_test_registry.hpp */, 4AFC341B12809A36003A0C29 /* catch_testcase.hpp */, ); name = "TestCase registration"; diff --git a/catch.hpp b/catch.hpp index 11a34042..0dcb9b52 100644 --- a/catch.hpp +++ b/catch.hpp @@ -27,7 +27,7 @@ #define TWOBLUECUBES_CATCH_HPP_INCLUDED #include "internal/catch_hub.h" -#include "internal/catch_registry.hpp" +#include "internal/catch_test_registry.hpp" #include "internal/catch_capture.hpp" #include "internal/catch_section.hpp" diff --git a/internal/catch_reporter_registry.hpp b/internal/catch_reporter_registry.hpp index 70837845..b9283ee5 100644 --- a/internal/catch_reporter_registry.hpp +++ b/internal/catch_reporter_registry.hpp @@ -1,5 +1,5 @@ /* - * catch_registry.hpp + * catch_reporter_registry.hpp * Catch * * Created by Phil on 29/10/2010. diff --git a/internal/catch_runner_impl.hpp b/internal/catch_runner_impl.hpp index 85dc6827..e4c5e71d 100644 --- a/internal/catch_runner_impl.hpp +++ b/internal/catch_runner_impl.hpp @@ -14,7 +14,7 @@ #include "catch_interfaces_reporter.h" #include "catch_config.hpp" -#include "catch_registry.hpp" +#include "catch_test_registry.hpp" #include "catch_capture.hpp" namespace Catch diff --git a/internal/catch_registry.hpp b/internal/catch_test_registry.hpp similarity index 99% rename from internal/catch_registry.hpp rename to internal/catch_test_registry.hpp index f2d7a412..8874a68d 100644 --- a/internal/catch_registry.hpp +++ b/internal/catch_test_registry.hpp @@ -1,5 +1,5 @@ /* - * catch_registry.hpp + * catch_test_registry.hpp * Catch * * Created by Phil on 18/10/2010.