Remove always_passing_unittest.cc.

Bug: None
Change-Id: I14b24d28c1469ad58b8657cd8e7e630be866a502
Reviewed-on: https://webrtc-review.googlesource.com/c/122081
Reviewed-by: Karl Wiberg <kwiberg@webrtc.org>
Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#26658}
This commit is contained in:
Mirko Bonadei 2019-02-10 11:06:39 +01:00 committed by Commit Bot
parent b4f7ab15a8
commit 98bcd321c5
2 changed files with 0 additions and 20 deletions

View File

@ -377,7 +377,6 @@ if (rtc_include_tests) {
"rtp_file_reader_unittest.cc",
"rtp_file_writer_unittest.cc",
"single_threaded_task_queue_unittest.cc",
"testsupport/always_passing_unittest.cc",
"testsupport/perf_test_unittest.cc",
"testsupport/test_artifacts_unittest.cc",
"testsupport/video_frame_writer_unittest.cc",

View File

@ -1,19 +0,0 @@
/*
* Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
#include "test/gtest.h"
namespace webrtc {
// A test that always passes. Useful when all tests in a executable are
// disabled, since a gtest returns exit code 1 if no tests have executed.
TEST(AlwaysPassingTest, AlwaysPassingTest) {}
} // namespace webrtc