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

Unified Diff: media/mp4/offset_byte_queue_unittest.cc

Issue 21536004: Drop redundant "TEST" prefix from test names in media code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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
« no previous file with comments | « media/mp4/mp4_stream_parser_unittest.cc ('k') | media/video/capture/video_capture_device_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/mp4/offset_byte_queue_unittest.cc
diff --git a/media/mp4/offset_byte_queue_unittest.cc b/media/mp4/offset_byte_queue_unittest.cc
index e2d40dc67c7ed77615ea6cdc44f184c08150f885..b9afbc8e1bc988afbf79a8a99aae9f5b44c6faa0 100644
--- a/media/mp4/offset_byte_queue_unittest.cc
+++ b/media/mp4/offset_byte_queue_unittest.cc
@@ -31,7 +31,7 @@ class OffsetByteQueueTest : public testing::Test {
scoped_ptr<OffsetByteQueue> queue_;
};
-TEST_F(OffsetByteQueueTest, TestSetUp) {
+TEST_F(OffsetByteQueueTest, SetUp) {
EXPECT_EQ(384, queue_->head());
EXPECT_EQ(512, queue_->tail());
@@ -44,7 +44,7 @@ TEST_F(OffsetByteQueueTest, TestSetUp) {
EXPECT_EQ(255, buf[size-1]);
}
-TEST_F(OffsetByteQueueTest, TestPeekAt) {
+TEST_F(OffsetByteQueueTest, PeekAt) {
const uint8* buf;
int size;
@@ -57,7 +57,7 @@ TEST_F(OffsetByteQueueTest, TestPeekAt) {
EXPECT_EQ(0, size);
}
-TEST_F(OffsetByteQueueTest, TestTrim) {
+TEST_F(OffsetByteQueueTest, Trim) {
EXPECT_TRUE(queue_->Trim(128));
EXPECT_TRUE(queue_->Trim(384));
EXPECT_EQ(384, queue_->head());
« no previous file with comments | « media/mp4/mp4_stream_parser_unittest.cc ('k') | media/video/capture/video_capture_device_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698