Home | History | Annotate | Download | only in gtest

Lines Matching full:parameterized

36 // Macros and functions for implementing parameterized tests
45 // Value-parameterized tests allow you to test your code with different
48 // Here is how you use value-parameterized tests:
52 // To write value-parameterized tests, first you should define a fixture
64 // Then, use the TEST_P macro to define as many parameterized tests
65 // for this fixture as you want. The _P suffix is for "parameterized"
155 // A parameterized test fixture must be derived from testing::Test and from
163 // You can inherit all the usual members for a non-parameterized test
172 // This is an ordinary non-parameterized test.
202 // parameterized tests. When a parameterized test case is instantiated