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