Home | History | Annotate | Download | only in samples

Lines Matching refs:TEST

32 // This sample shows how to test common properties of multiple
34 // value-parameterized tests. Each test in the test case has
48 // As a general rule, to prevent a test from affecting the tests that come
49 // after it, you should create and destroy the tested objects for each test
51 // function for PrimeTable objects. We will instantiate objects in test's
64 // Inside the test body, fixture constructor, SetUp(), and TearDown() you
65 // can refer to the test parameter by GetParam(). In this case, the test
109 // or bind them to a list of values which will be used as test parameters.
122 // Google Test may not support value-parameterized tests with some
127 // must be defined). This dummy test keeps gtest_main linked in.
128 TEST(DummyTest, ValueParameterizedTestsAreNotSupportedOnThisPlatform) {}