Lines Matching refs:TestName
15 TEST(<em>TestSuiteName</em>, <em>TestName</em>) {
20 Defines an individual test named *`TestName`* in the test suite
23 Both arguments *`TestSuiteName`* and *`TestName`* must be valid C++ identifiers
34 TEST_F(<em>TestFixtureName</em>, <em>TestName</em>) {
39 Defines an individual test named *`TestName`* that uses the test fixture class
42 Both arguments *`TestFixtureName`* and *`TestName`* must be valid C++
54 TEST_P(<em>TestFixtureName</em>, <em>TestName</em>) {
59 Defines an individual value-parameterized test named *`TestName`* that uses the
63 Both arguments *`TestFixtureName`* and *`TestName`* must be valid C++
195 TYPED_TEST(<em>TestSuiteName</em>, <em>TestName</em>) {
200 Defines an individual typed test named *`TestName`* in the typed test suite
246 TYPED_TEST_P(<em>TestSuiteName</em>, <em>TestName</em>) {
251 Defines an individual type-parameterized test named *`TestName`* in the
317 `FRIEND_TEST(`*`TestSuiteName`*`,`*`TestName`*`)`