| 39 | } |
| 40 | |
| 41 | uint32_t PrefixMatchCost(char const * a, char const * b) |
| 42 | { |
| 43 | return StringMatchCost(a, strlen(a), b, strlen(b), MatchCostMock(), 1000, true); |
| 44 | } |
| 45 | |
| 46 | void TestEqual(vector<UniString> const & v, base::StringIL const & expected) |
| 47 | { |
no test coverage detected