| 7 | const std::string test_str = "qwertyuiopasdfghjklmnbvcz"; |
| 8 | |
| 9 | static void CityHash32(int n) { |
| 10 | for (int i = 0; i < n; i++) { |
| 11 | toft::CityHash32(test_str); |
| 12 | } |
| 13 | } |
| 14 | |
| 15 | static void CityHash64(int n) { |
| 16 | for (int i = 0; i < n; i++) { |
nothing calls this directly
no outgoing calls
no test coverage detected