Home | History | Annotate | Download | only in gtest

Lines Matching defs:WithParamInterface

1637 // ::testing::WithParamInterface. In most cases that just means inheriting
1639 // may need to inherit from Test and WithParamInterface at different levels.
1670 class WithParamInterface {
1673 virtual ~WithParamInterface() {}
1678 // like writing 'WithParamInterface<bool>::GetParam()' for a test that
1692 // TestClass must be a subclass of WithParamInterface<T> and Test.
1697 const T* WithParamInterface<T>::parameter_ = NULL;
1700 // WithParamInterface, and can just inherit from ::testing::TestWithParam.
1703 class TestWithParam : public Test, public WithParamInterface<T> {