| 238 | static const char kDoubleString[]; |
| 239 | private: |
| 240 | void SetUp() |
| 241 | { |
| 242 | int n; |
| 243 | sscanf(kIntString, "%d", &n); // NOLINT(runtime/printf) |
| 244 | ASSERT_EQ(kInt, n); |
| 245 | ASSERT_TRUE(StringToNumber(kIntString, &n)); |
| 246 | ASSERT_EQ(kInt, n); |
| 247 | } |
| 248 | }; |
| 249 | |
| 250 | const int StringNumberPerformanceTest::kInt; |
nothing calls this directly
no test coverage detected