Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(280)

Unified Diff: webrtc/base/file_unittest.cc

Issue 2611663002: Refactor rtc_unittests into several targets. (Closed)
Patch Set: Add fakemetricsobserver target in webrtc/api/BUILD.gn Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/base/file_unittest.cc
diff --git a/webrtc/base/file_unittest.cc b/webrtc/base/file_unittest.cc
index d7cefc8748f322602754c1064e11722ef99f68bd..99a5d5885a6277cfa536243067f105cf08437b2d 100644
--- a/webrtc/base/file_unittest.cc
+++ b/webrtc/base/file_unittest.cc
@@ -52,11 +52,11 @@ bool VerifyBuffer(uint8_t* buffer, size_t length, uint8_t start_value) {
class FileTest : public ::testing::Test {
protected:
std::string path_;
- void SetUp() {
+ void SetUp() override {
path_ = webrtc::test::TempFilename(webrtc::test::OutputPath(), "test_file");
ASSERT_FALSE(path_.empty());
}
- void TearDown() { RemoveFile(path_); }
+ void TearDown() override { RemoveFile(path_); }
};
TEST_F(FileTest, DefaultConstructor) {
« no previous file with comments | « webrtc/base/BUILD.gn ('k') | webrtc/base/logging_unittest.cc » ('j') | webrtc/sdk/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698