#include "ClangTidyTest.h"
#include "readability/BracesAroundStatementsCheck.h"
#include "readability/NamespaceCommentCheck.h"
#include "readability/SimplifyBooleanExprCheck.h"
#include "gtest/gtest.h"
namespace clang {
namespace tidy {
namespace test {
BracesAroundStatementsCheck;
NamespaceCommentCheck;
SimplifyBooleanExprCheck;
TEST(NamespaceCommentCheckTest, Basic) { … }
TEST(NamespaceCommentCheckTest, SingleLineNamespaces) { … }
TEST(NamespaceCommentCheckTest, CheckExistingComments) { … }
TEST(NamespaceCommentCheckTest, FixWrongComments) { … }
TEST(BracesAroundStatementsCheckTest, IfWithComments) { … }
TEST(BracesAroundStatementsCheckTest, If) { … }
TEST(BracesAroundStatementsCheckTest, IfElseWithShortStatements) { … }
TEST(BracesAroundStatementsCheckTest, For) { … }
TEST(BracesAroundStatementsCheckTest, ForRange) { … }
TEST(BracesAroundStatementsCheckTest, DoWhile) { … }
TEST(BracesAroundStatementsCheckTest, While) { … }
TEST(BracesAroundStatementsCheckTest, Nested) { … }
TEST(BracesAroundStatementsCheckTest, Macros) { … }
#define EXPECT_NO_CHANGES_WITH_OPTS(Check, Opts, Code) …
TEST(BracesAroundStatementsCheckTest, ImplicitCastInReturn) { … }
TEST(SimplifyBooleanExprCheckTest, CodeWithError) { … }
}
}
}