コード例 #1
0
ファイル: catch_registry_hub.cpp プロジェクト: 77/Catch
 void cleanUp() {
     delete getTheRegistryHub();
     getTheRegistryHub() = nullptr;
     cleanUpContext();
     ReusableStringStream::cleanup();
 }
コード例 #2
0
ファイル: catch_registry_hub.cpp プロジェクト: 77/Catch
 IRegistryHub& getRegistryHub() {
     return *getTheRegistryHub();
 }
コード例 #3
0
ファイル: catch_registry_hub.cpp プロジェクト: 77/Catch
 IMutableRegistryHub& getMutableRegistryHub() {
     return *getTheRegistryHub();
 }
コード例 #4
0
ファイル: catch_registry_hub.hpp プロジェクト: benjamg/Catch
 void cleanUp() {
     delete getTheRegistryHub();
     getTheRegistryHub() = NULL;
     cleanUpContext();
 }