Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
googletest
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
googletest
Commits
85a46319
Commit
85a46319
authored
May 27, 2020
by
Abseil Team
Committed by
Derek Mauro
May 28, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Googletest export
Change 'suite' to 'case' in comments. PiperOrigin-RevId: 313429487
parent
07beabd6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
gtest.h
googletest/include/gtest/gtest.h
+3
-3
No files found.
googletest/include/gtest/gtest.h
View file @
85a46319
...
...
@@ -418,10 +418,10 @@ class GTEST_API_ Test {
// The d'tor is virtual as we intend to inherit from Test.
virtual
~
Test
();
// Sets up the stuff shared by all tests in this test
cas
e.
// Sets up the stuff shared by all tests in this test
suit
e.
//
// Google Test will call Foo::SetUpTestSuite() before running the first
// test in test
cas
e Foo. Hence a sub-class can define its own
// test in test
suit
e Foo. Hence a sub-class can define its own
// SetUpTestSuite() method to shadow the one defined in the super
// class.
static
void
SetUpTestSuite
()
{}
...
...
@@ -429,7 +429,7 @@ class GTEST_API_ Test {
// Tears down the stuff shared by all tests in this test suite.
//
// Google Test will call Foo::TearDownTestSuite() after running the last
// test in test
cas
e Foo. Hence a sub-class can define its own
// test in test
suit
e Foo. Hence a sub-class can define its own
// TearDownTestSuite() method to shadow the one defined in the super
// class.
static
void
TearDownTestSuite
()
{}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment