| 136 | TestRegistry* TestRegistry::currentRegistry_ = NULLPTR; |
| 137 | |
| 138 | TestRegistry* TestRegistry::getCurrentRegistry() |
| 139 | { |
| 140 | static TestRegistry registry; |
| 141 | return (currentRegistry_ == NULLPTR) ? ®istry : currentRegistry_; |
| 142 | } |
| 143 | |
| 144 | void TestRegistry::setCurrentRegistry(TestRegistry* registry) |
| 145 | { |