blob: 6871380c42b837a9a9a5f96ef4b33cd488787510 [file] [log] [blame]
// Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "shill/mock_modem_cdma_proxy.h"
#include "shill/testing.h"
using testing::_;
namespace shill {
MockModemCDMAProxy::MockModemCDMAProxy() {
ON_CALL(*this, Activate(_, _, _, _))
.WillByDefault(SetOperationFailedInArgumentAndWarn<1>());
ON_CALL(*this, GetRegistrationState(_, _, _))
.WillByDefault(SetOperationFailedInArgumentAndWarn<0>());
ON_CALL(*this, GetSignalQuality(_, _, _))
.WillByDefault(SetOperationFailedInArgumentAndWarn<0>());
}
MockModemCDMAProxy::~MockModemCDMAProxy() {}
} // namespace shill