Index: webrtc/voice_engine/test/auto_test/standard/hardware_before_initializing_test.cc |
diff --git a/webrtc/voice_engine/test/auto_test/standard/hardware_before_initializing_test.cc b/webrtc/voice_engine/test/auto_test/standard/hardware_before_initializing_test.cc |
deleted file mode 100644 |
index 976b805a4e1bacc08e31a3820a74c5e88c62da53..0000000000000000000000000000000000000000 |
--- a/webrtc/voice_engine/test/auto_test/standard/hardware_before_initializing_test.cc |
+++ /dev/null |
@@ -1,27 +0,0 @@ |
-/* |
- * Copyright (c) 2011 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 "webrtc/common_types.h" |
-#include "webrtc/voice_engine/test/auto_test/fixtures/before_initialization_fixture.h" |
- |
-using namespace webrtc; |
- |
-class HardwareBeforeInitializingTest : public BeforeInitializationFixture { |
-}; |
- |
-TEST_F(HardwareBeforeInitializingTest, |
- SetAudioDeviceLayerAcceptsPlatformDefaultBeforeInitializing) { |
- AudioLayers wanted_layer = kAudioPlatformDefault; |
- AudioLayers given_layer; |
- EXPECT_EQ(0, voe_hardware_->SetAudioDeviceLayer(wanted_layer)); |
- EXPECT_EQ(0, voe_hardware_->GetAudioDeviceLayer(given_layer)); |
- EXPECT_EQ(wanted_layer, given_layer) << |
- "These should be the same before initializing."; |
-} |