| 442 | } |
| 443 | |
| 444 | repTestType convertToTestType(int iValue) { |
| 445 | std::string sValue; |
| 446 | char cValue; |
| 447 | do { |
| 448 | cValue = char(int('A') + (iValue % 26)); |
| 449 | sValue += std::string(1, cValue); |
| 450 | iValue /= 26; |
| 451 | } while (iValue > 0); |
| 452 | return sValue; |
| 453 | } |
| 454 | |
| 455 | Reference<LocalitySet> createTestLocalityMap(std::vector<repTestType>& indexes, |
| 456 | int dcTotal, |
no outgoing calls
no test coverage detected