| 7 | #include "thirdparty/glog/logging.h" |
| 8 | |
| 9 | static void CreateCanonicalUUIDString(int n) { |
| 10 | for (int i = 0; i < n; i++) { |
| 11 | std::string uuid = toft::CreateCanonicalUUIDString(); |
| 12 | VLOG(1) << uuid; |
| 13 | } |
| 14 | } |
| 15 | |
| 16 | TOFT_BENCHMARK(CreateCanonicalUUIDString)->ThreadRange(1, NumCPUs()); |
nothing calls this directly
no outgoing calls
no test coverage detected