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)
fixtureyou mean the derived::testing::Testclass? Some links for the particular features would be helpful to give concise answers to your question.fixture== derived from::testing::Testthis is what I mean. I guess, what I ask are already the features of the gtest. Not sure what you mean.