Wire Sysio Wire Sysion 1.0.0
Loading...
Searching...
No Matches
testing::internal::TestCaseNameIs Class Reference

Public Member Functions

 TestCaseNameIs (const std::string &name)
 
bool operator() (const TestCase *test_case) const
 

Detailed Description

Definition at line 4879 of file gtest.cc.

Constructor & Destructor Documentation

◆ TestCaseNameIs()

testing::internal::TestCaseNameIs::TestCaseNameIs ( const std::string & name)
inlineexplicit

Definition at line 4882 of file gtest.cc.

4883 : name_(name) {}
std::string name

Member Function Documentation

◆ operator()()

bool testing::internal::TestCaseNameIs::operator() ( const TestCase * test_case) const
inline

Definition at line 4886 of file gtest.cc.

4886 {
4887 return test_case != NULL && strcmp(test_case->name(), name_.c_str()) == 0;
4888 }
Here is the call graph for this function:

The documentation for this class was generated from the following file: