blob: f0e665bc67e594b3c4bb160952317386b97777df [file] [log] [blame]
/*
* 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 "after_initialization_fixture.h"
class TestErrorObserver : public webrtc::VoiceEngineObserver {
public:
TestErrorObserver() {}
virtual ~TestErrorObserver() {}
void CallbackOnError(const int channel, const int error_code) {
ADD_FAILURE() << "Unexpected error on channel " << channel <<
": error code " << error_code;
}
};
AfterInitializationFixture::AfterInitializationFixture()
: error_observer_(new TestErrorObserver()) {
EXPECT_EQ(0, voe_base_->Init());
#if defined(WEBRTC_ANDROID)
EXPECT_EQ(0, voe_hardware_->SetLoudspeakerStatus(false));
#endif
EXPECT_EQ(0, voe_base_->RegisterVoiceEngineObserver(*error_observer_));
}
AfterInitializationFixture::~AfterInitializationFixture() {
EXPECT_EQ(0, voe_base_->DeRegisterVoiceEngineObserver());
}