I have several questions about googletest framework and its usage:
By
fixture
in the following questions I mean a class derived from::testing::Test
As far as I know, I can use
fixture
along withparameterization feature
of gtests. Does this apply to bothvalue-parameterization
andtype-parameterization
?There are cases when the fixture is irrelevant. Can I use
type-parameterization
withvalue-parameterization
withoutfixture
? How (example would be nice)?Pure interest: Can I use
fixture
together withtype-
andvalue-parameterization
? (I am quite sure this is a needless complexity)