blob: e3b0404b76516459a7482d7e5563f12c5d28eb6a [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_simple_proxy.h"
#include "shill/testing.h"
using testing::_;
namespace shill {
MockModemSimpleProxy::MockModemSimpleProxy() {
ON_CALL(*this, GetModemStatus(_, _, _))
.WillByDefault(SetOperationFailedInArgumentAndWarn<0>());
ON_CALL(*this, Connect(_, _, _, _))
.WillByDefault(SetOperationFailedInArgumentAndWarn<1>());
}
MockModemSimpleProxy::~MockModemSimpleProxy() {}
} // namespace shill