String toUpperCase(String input) { if (isInTest) { return input; } else { return _caseMappingImpl.toUpperCase(input); } }