Wire Sysio Wire Sysion 1.0.0
Loading...
Searching...
No Matches
testing::CurrentTestInfoTest Class Reference
Inheritance diagram for testing::CurrentTestInfoTest:
Collaboration diagram for testing::CurrentTestInfoTest:

Static Protected Member Functions

static void SetUpTestCase ()
 
static void TearDownTestCase ()
 

Additional Inherited Members

- Public Types inherited from testing::Test
typedef internal::SetUpTestCaseFunc SetUpTestCaseFunc
 
typedef internal::TearDownTestCaseFunc TearDownTestCaseFunc
 
- Public Member Functions inherited from testing::Test
virtual ~Test ()
 
- Static Public Member Functions inherited from testing::Test
static void SetUpTestCase ()
 
static void TearDownTestCase ()
 
static bool HasFatalFailure ()
 
static bool HasNonfatalFailure ()
 
static bool HasFailure ()
 
static void RecordProperty (const std::string &key, const std::string &value)
 
static void RecordProperty (const std::string &key, int value)
 
- Protected Member Functions inherited from testing::Test
 Test ()
 
virtual void SetUp ()
 
virtual void TearDown ()
 

Detailed Description

Definition at line 6542 of file gtest_unittest.cc.

Member Function Documentation

◆ SetUpTestCase()

static void testing::CurrentTestInfoTest::SetUpTestCase ( )
inlinestaticprotected

Definition at line 6546 of file gtest_unittest.cc.

6546 {
6547 // There should be no tests running at this point.
6548 const TestInfo* test_info =
6550 EXPECT_TRUE(test_info == NULL)
6551 << "There should be no tests running at this point.";
6552 }
const TestInfo * current_test_info() const GTEST_LOCK_EXCLUDED_(mutex_)
Definition gtest.cc:4686
static UnitTest * GetInstance()
Definition gtest.cc:4374
#define EXPECT_TRUE(condition)
Definition gtest.h:1895
Here is the call graph for this function:

◆ TearDownTestCase()

static void testing::CurrentTestInfoTest::TearDownTestCase ( )
inlinestaticprotected

Definition at line 6556 of file gtest_unittest.cc.

6556 {
6557 const TestInfo* test_info =
6559 EXPECT_TRUE(test_info == NULL)
6560 << "There should be no tests running at this point.";
6561 }
Here is the call graph for this function:

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