Goal
Currently for the GTEST based run summary the asserts are not actual values.
As gtest doesn't provide provision for counting actual asserts used by the test, the current value of asserts is same as number of tests.
This needs to be changed in future, by adding variables inside ut_gtest macros.
Ex:
#define UT_EXPECT_EQ(val1, val2) \
do { \
++gtest_macro_total; \
EXPECT_EQ(val1, val2); \
if (!::testing::Test::HasFailure()) ++gtest_macro_passed; \
} while (0)
Notes (Optional)
No response