summaryrefslogtreecommitdiffstats
path: root/googletest/test/gtest_xml_outfile1_test_.cc
diff options
context:
space:
mode:
Diffstat (limited to 'googletest/test/gtest_xml_outfile1_test_.cc')
-rw-r--r--googletest/test/gtest_xml_outfile1_test_.cc8
1 files changed, 2 insertions, 6 deletions
diff --git a/googletest/test/gtest_xml_outfile1_test_.cc b/googletest/test/gtest_xml_outfile1_test_.cc
index a38ebac..19aa252 100644
--- a/googletest/test/gtest_xml_outfile1_test_.cc
+++ b/googletest/test/gtest_xml_outfile1_test_.cc
@@ -34,12 +34,8 @@
class PropertyOne : public testing::Test {
protected:
- virtual void SetUp() {
- RecordProperty("SetUpProp", 1);
- }
- virtual void TearDown() {
- RecordProperty("TearDownProp", 1);
- }
+ void SetUp() override { RecordProperty("SetUpProp", 1); }
+ void TearDown() override { RecordProperty("TearDownProp", 1); }
};
TEST_F(PropertyOne, TestSomeProperties) {