diff options
Diffstat (limited to 'clang-tools-extra/unittests/clang-tidy/ObjCModuleTest.cpp')
-rw-r--r-- | clang-tools-extra/unittests/clang-tidy/ObjCModuleTest.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/clang-tools-extra/unittests/clang-tidy/ObjCModuleTest.cpp b/clang-tools-extra/unittests/clang-tidy/ObjCModuleTest.cpp new file mode 100644 index 0000000..c50480a --- /dev/null +++ b/clang-tools-extra/unittests/clang-tidy/ObjCModuleTest.cpp @@ -0,0 +1,21 @@ +//===---- ObjCModuleTest.cpp - clang-tidy ---------------------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +#include "ClangTidyTest.h" +#include "gtest/gtest.h" + +namespace clang { +namespace tidy { +namespace test { + +// TODO(D39142) Add unit tests for the ObjC module here once a check lands. + +} // namespace test +} // namespace tidy +} // namespace clang |