llvm/clang/unittests/Format/MatchFilePathTest.cpp

//===- unittest/Format/MatchFilePathTest.cpp ------------------------------===//
//
// 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 "../../lib/Format/MatchFilePath.h"
#include "gtest/gtest.h"

namespace clang {
namespace format {
namespace {

class MatchFilePathTest : public testing::Test {};

// Most of the test cases below are from:
// https://github.com/python/cpython/blob/main/Lib/test/test_fnmatch.py

TEST_F(MatchFilePathTest, Wildcard) {}

TEST_F(MatchFilePathTest, Backslash) {}

TEST_F(MatchFilePathTest, Newline) {}

TEST_F(MatchFilePathTest, Star) {}

TEST_F(MatchFilePathTest, CaseSensitive) {}

TEST_F(MatchFilePathTest, PathSeparators) {}

TEST_F(MatchFilePathTest, NumericEscapeSequence) {}

TEST_F(MatchFilePathTest, ValidBrackets) {}

TEST_F(MatchFilePathTest, InvalidBrackets) {}

TEST_F(MatchFilePathTest, Range) {}

TEST_F(MatchFilePathTest, Hyphen) {}

TEST_F(MatchFilePathTest, UpperLELower) {}

TEST_F(MatchFilePathTest, SlashAndBackslashInBrackets) {}

TEST_F(MatchFilePathTest, SlashAndBackslashInRange) {}

TEST_F(MatchFilePathTest, Brackets) {}

TEST_F(MatchFilePathTest, Path) {}

} // namespace
} // namespace format
} // namespace clang