#include "clang/Basic/CharInfo.h"
#include "gtest/gtest.h"
usingnamespacellvm;
usingnamespaceclang;
TEST(CharInfoTest, validateInfoTable) { … }
TEST(CharInfoTest, isASCII) { … }
TEST(CharInfoTest, isAsciiIdentifierStart) { … }
TEST(CharInfoTest, isAsciiIdentifierContinue) { … }
TEST(CharInfoTest, isHorizontalWhitespace) { … }
TEST(CharInfoTest, isVerticalWhitespace) { … }
TEST(CharInfoTest, isWhitespace) { … }
TEST(CharInfoTest, isDigit) { … }
TEST(CharInfoTest, isHexDigit) { … }
TEST(CharInfoTest, isLetter) { … }
TEST(CharInfoTest, isLowercase) { … }
TEST(CharInfoTest, isUppercase) { … }
TEST(CharInfoTest, isAlphanumeric) { … }
TEST(CharInfoTest, isPunctuation) { … }
TEST(CharInfoTest, isPrintable) { … }
TEST(CharInfoTest, isPreprocessingNumberBody) { … }
TEST(CharInfoTest, isRawStringDelimBody) { … }
TEST(CharInfoTest, toLowercase) { … }
TEST(CharInfoTest, toUppercase) { … }
TEST(CharInfoTest, isValidAsciiIdentifier) { … }