diff options
Diffstat (limited to 'clang-tools-extra/unittests/clang-tidy/LLVMModuleTest.cpp')
-rw-r--r-- | clang-tools-extra/unittests/clang-tidy/LLVMModuleTest.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/clang-tools-extra/unittests/clang-tidy/LLVMModuleTest.cpp b/clang-tools-extra/unittests/clang-tidy/LLVMModuleTest.cpp new file mode 100644 index 00000000000..da1d9e0db91 --- /dev/null +++ b/clang-tools-extra/unittests/clang-tidy/LLVMModuleTest.cpp @@ -0,0 +1,15 @@ +#include "ClangTidyTest.h" + +#include "llvm/LLVMTidyModule.h" + +namespace clang { +namespace tidy { + +typedef ClangTidyTest<NamespaceCommentCheck> NamespaceCommentCheckTest; + +TEST_F(NamespaceCommentCheckTest, Basic) { + EXPECT_EQ("namespace i {\n} // namespace i", runCheckOn("namespace i {\n}")); +} + +} // namespace tidy +} // namespace clang |