IsUpper
static bool IsUpper(uint32 c);
if (BUnicodeChar::IsUpper(unicodeChar))
# define ToLower(c) (IsUpper((uch) c) ? (unsigned) c | 0x20 : (unsigned) c)
CPPUNIT_ASSERT_EQUAL(result.isUpper, BUnicodeChar::IsUpper(i));