Partial Code Coverage in Google test for ASSERT and EXPECT
NewCodee
1
Reputation point
I have the following sample piece of code in google test project:
TEST(methodName, testcase) {
EXPECT_EQ(1, 1);
EXPECT_TRUE(true);
}
When I analyze code coverage in visual studio 2019 enterprise, I am getting partial code coverage
What changes needs to be done to get full code coverage?
Developer technologies Visual Studio Testing
371 questions
Developer technologies C++
3,971 questions
Sign in to answer