llvm/clang/unittests/Basic/CharInfoTest.cpp

//===- unittests/Basic/CharInfoTest.cpp -- ASCII classification tests -----===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "clang/Basic/CharInfo.h"
#include "gtest/gtest.h"

usingnamespacellvm;
usingnamespaceclang;

// Check that the CharInfo table has been constructed reasonably.
TEST(CharInfoTest, validateInfoTable) {}

// Check various predicates.
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) {}