#include "../../lib/Format/MatchFilePath.h"
#include "gtest/gtest.h"
namespace clang {
namespace format {
namespace {
class MatchFilePathTest : public testing::Test { … };
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) { … }
}
}
}