Googletest export
Update example code in gtest.h to prefer override over virtual now that it is widely available in C++11. PiperOrigin-RevId: 232057792
This commit is contained in:
parent
471f5bc433
commit
876bdfa565
@ -1854,13 +1854,13 @@ GTEST_API_ GTEST_ATTRIBUTE_PRINTF_(2, 3) void ColoredPrintf(GTestColor color,
|
|||||||
// FooTest() {
|
// FooTest() {
|
||||||
// // Can use GetParam() here.
|
// // Can use GetParam() here.
|
||||||
// }
|
// }
|
||||||
// virtual ~FooTest() {
|
// ~FooTest() override {
|
||||||
// // Can use GetParam() here.
|
// // Can use GetParam() here.
|
||||||
// }
|
// }
|
||||||
// virtual void SetUp() {
|
// void SetUp() override {
|
||||||
// // Can use GetParam() here.
|
// // Can use GetParam() here.
|
||||||
// }
|
// }
|
||||||
// virtual void TearDown {
|
// void TearDown override {
|
||||||
// // Can use GetParam() here.
|
// // Can use GetParam() here.
|
||||||
// }
|
// }
|
||||||
// };
|
// };
|
||||||
@ -2380,7 +2380,7 @@ bool StaticAssertTypeEq() {
|
|||||||
//
|
//
|
||||||
// class FooTest : public testing::Test {
|
// class FooTest : public testing::Test {
|
||||||
// protected:
|
// protected:
|
||||||
// virtual void SetUp() { b_.AddElement(3); }
|
// void SetUp() override { b_.AddElement(3); }
|
||||||
//
|
//
|
||||||
// Foo a_;
|
// Foo a_;
|
||||||
// Foo b_;
|
// Foo b_;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user