proxygen
foo Namespace Reference

Classes

class  MixedUpTestCaseTest
 
class  MixedUpTestCaseWithSameTestNameTest
 
struct  PointerPrintable
 
struct  PrintableViaPrintTo
 
class  PrintableViaPrintToTemplate
 
class  StreamableTemplateInFoo
 
class  UnprintableInFoo
 

Functions

void PrintTo (const PrintableViaPrintTo &x,::std::ostream *os)
 
::std::ostream & operator<< (::std::ostream &os, const PointerPrintable *)
 
template<typename T >
void PrintTo (const PrintableViaPrintToTemplate< T > &x,::std::ostream *os)
 
template<typename T >
inline::std::ostream & operator<< (::std::ostream &os, const StreamableTemplateInFoo< T > &x)
 
 TEST_F (MixedUpTestCaseTest, FirstTestFromNamespaceFoo)
 
 TEST_F (MixedUpTestCaseTest, SecondTestFromNamespaceFoo)
 
 TEST_F (MixedUpTestCaseWithSameTestNameTest, TheSecondTestWithThisNameShouldFail)
 

Function Documentation

::std::ostream& foo::operator<< ( ::std::ostream &  os,
const PointerPrintable  
)

Definition at line 152 of file gtest-printers_test.cc.

153  {
154  return os << "PointerPrintable*";
155 }
template<typename T >
inline ::std::ostream& foo::operator<< ( ::std::ostream &  os,
const StreamableTemplateInFoo< T > &  x 
)

Definition at line 185 of file gtest-printers_test.cc.

References foo::StreamableTemplateInFoo< T >::value().

186  {
187  return os << "StreamableTemplateInFoo: " << x.value();
188 }
Definition: InvokeTest.cpp:58
void foo::PrintTo ( const PrintableViaPrintTo x,
::std::ostream *  os 
)

Definition at line 144 of file gtest-printers_test.cc.

References foo::PrintableViaPrintTo::value.

144  {
145  *os << "PrintableViaPrintTo: " << x.value;
146 }
Definition: InvokeTest.cpp:58
template<typename T >
void foo::PrintTo ( const PrintableViaPrintToTemplate< T > &  x,
::std::ostream *  os 
)

Definition at line 169 of file gtest-printers_test.cc.

References foo::PrintableViaPrintToTemplate< T >::value().

169  {
170  *os << "PrintableViaPrintToTemplate: " << x.value();
171 }
Definition: InvokeTest.cpp:58
foo::TEST_F ( MixedUpTestCaseTest  ,
FirstTestFromNamespaceFoo   
)

Definition at line 538 of file gtest_output_test_.cc.

538 {}
foo::TEST_F ( MixedUpTestCaseTest  ,
SecondTestFromNamespaceFoo   
)

Definition at line 539 of file gtest_output_test_.cc.

539 {}
foo::TEST_F ( MixedUpTestCaseWithSameTestNameTest  ,
TheSecondTestWithThisNameShouldFail   
)

Definition at line 544 of file gtest_output_test_.cc.

545  {}