Code Formatting - why do EXPECT macros get unindented?
This is what the formatting function does to a simple test. Can anybody see why? Is there a setting to change this?
{code}
#include <gtest/gtest.h>
namespace Test
{
TEST(Infra, Test_XlSandBox)
{
int a = 1;
int b = 2 * a;
EXPECT_EQ(a, b); // why is this unindented?!
}
}
{code}
Please sign in to leave a comment.
Thanks for the issue report, we'll fix this soon - https://youtrack.jetbrains.com/issue/RSCPP-20440.