Home | History | Annotate | Download | only in test

Lines Matching refs:TypedTestP

876 class TypedTestP : public testing::Test {
879 TYPED_TEST_CASE_P(TypedTestP);
881 TYPED_TEST_P(TypedTestP, Success) {
885 TYPED_TEST_P(TypedTestP, Failure) {
889 REGISTER_TYPED_TEST_CASE_P(TypedTestP, Success, Failure);
892 INSTANTIATE_TYPED_TEST_CASE_P(Unsigned, TypedTestP, UnsignedTypes);