| 231 | } |
| 232 | |
| 233 | TEST_F(ThreadLocalTest, TestConcurrentCounters) { |
| 234 | // Run this multiple times to ensure we don't leave remnants behind in the |
| 235 | // CounterRegistry. |
| 236 | CounterRegistry registry; |
| 237 | for (int i = 0; i < 3; i++) { |
| 238 | TestThreadLocalCounters(®istry, 8); |
| 239 | } |
| 240 | } |
| 241 | |
| 242 | // Test class that stores a string in a static thread local member. |
| 243 | // This class cannot be instantiated. The methods are all static. |
nothing calls this directly
no test coverage detected