1c0beca55d290fe0b1c96d78cbbcf94b05c23f5a5Peter Qiu//
2c0beca55d290fe0b1c96d78cbbcf94b05c23f5a5Peter Qiu// Copyright (C) 2012 The Android Open Source Project
3c0beca55d290fe0b1c96d78cbbcf94b05c23f5a5Peter Qiu//
4c0beca55d290fe0b1c96d78cbbcf94b05c23f5a5Peter Qiu// Licensed under the Apache License, Version 2.0 (the "License");
5c0beca55d290fe0b1c96d78cbbcf94b05c23f5a5Peter Qiu// you may not use this file except in compliance with the License.
6c0beca55d290fe0b1c96d78cbbcf94b05c23f5a5Peter Qiu// You may obtain a copy of the License at
7c0beca55d290fe0b1c96d78cbbcf94b05c23f5a5Peter Qiu//
8c0beca55d290fe0b1c96d78cbbcf94b05c23f5a5Peter Qiu//      http://www.apache.org/licenses/LICENSE-2.0
9c0beca55d290fe0b1c96d78cbbcf94b05c23f5a5Peter Qiu//
10c0beca55d290fe0b1c96d78cbbcf94b05c23f5a5Peter Qiu// Unless required by applicable law or agreed to in writing, software
11c0beca55d290fe0b1c96d78cbbcf94b05c23f5a5Peter Qiu// distributed under the License is distributed on an "AS IS" BASIS,
12c0beca55d290fe0b1c96d78cbbcf94b05c23f5a5Peter Qiu// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13c0beca55d290fe0b1c96d78cbbcf94b05c23f5a5Peter Qiu// See the License for the specific language governing permissions and
14c0beca55d290fe0b1c96d78cbbcf94b05c23f5a5Peter Qiu// limitations under the License.
15c0beca55d290fe0b1c96d78cbbcf94b05c23f5a5Peter Qiu//
16c37a9c4ee413984342d53c6151edcb7dc3800d78Darin Petkov
17c54afe521739065a5d77e7c049acdb5e603f0592Ben Chan#include "shill/cellular/mock_modem_gobi_proxy.h"
18c37a9c4ee413984342d53c6151edcb7dc3800d78Darin Petkov
19125aea856fbe6520131c836e0b7f14529035c62fPrathmesh Prabhu#include "shill/testing.h"
20125aea856fbe6520131c836e0b7f14529035c62fPrathmesh Prabhu
21125aea856fbe6520131c836e0b7f14529035c62fPrathmesh Prabhuusing testing::_;
22125aea856fbe6520131c836e0b7f14529035c62fPrathmesh Prabhu
23c37a9c4ee413984342d53c6151edcb7dc3800d78Darin Petkovnamespace shill {
24c37a9c4ee413984342d53c6151edcb7dc3800d78Darin Petkov
25125aea856fbe6520131c836e0b7f14529035c62fPrathmesh PrabhuMockModemGobiProxy::MockModemGobiProxy() {
26125aea856fbe6520131c836e0b7f14529035c62fPrathmesh Prabhu  ON_CALL(*this, SetCarrier(_, _, _, _))
27125aea856fbe6520131c836e0b7f14529035c62fPrathmesh Prabhu      .WillByDefault(SetOperationFailedInArgumentAndWarn<1>());
28125aea856fbe6520131c836e0b7f14529035c62fPrathmesh Prabhu}
29c37a9c4ee413984342d53c6151edcb7dc3800d78Darin Petkov
30c37a9c4ee413984342d53c6151edcb7dc3800d78Darin PetkovMockModemGobiProxy::~MockModemGobiProxy() {}
31c37a9c4ee413984342d53c6151edcb7dc3800d78Darin Petkov
32c37a9c4ee413984342d53c6151edcb7dc3800d78Darin Petkov}  // namespace shill
33