61 lines
2.3 KiB
C++
61 lines
2.3 KiB
C++
//
|
|
// Copyright (C) 2011 The Android Open Source Project
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
|
|
#ifndef SHILL_MOCK_PROPERTY_STORE_H_
|
|
#define SHILL_MOCK_PROPERTY_STORE_H_
|
|
|
|
#include <string>
|
|
|
|
#include <base/macros.h>
|
|
#include <gmock/gmock.h>
|
|
|
|
#include "shill/property_store.h"
|
|
|
|
namespace shill {
|
|
|
|
class MockPropertyStore : public PropertyStore {
|
|
public:
|
|
MockPropertyStore();
|
|
~MockPropertyStore() override;
|
|
|
|
MOCK_CONST_METHOD1(Contains, bool(const std::string&));
|
|
MOCK_METHOD3(SetBoolProperty, bool(const std::string&, bool, Error*));
|
|
MOCK_METHOD3(SetInt16Property, bool(const std::string&, int16_t, Error*));
|
|
MOCK_METHOD3(SetInt32Property, bool(const std::string&, int32_t, Error*));
|
|
MOCK_METHOD3(SetStringProperty, bool(const std::string&,
|
|
const std::string&,
|
|
Error*));
|
|
MOCK_METHOD3(SetStringmapProperty, bool(const std::string&,
|
|
const Stringmap&,
|
|
Error*));
|
|
MOCK_METHOD3(SetStringsProperty, bool(const std::string&,
|
|
const Strings&,
|
|
Error*));
|
|
MOCK_METHOD3(SetUint8Property, bool(const std::string&, uint8_t, Error*));
|
|
MOCK_METHOD3(SetUint16Property, bool(const std::string&, uint16_t, Error*));
|
|
MOCK_METHOD3(SetUint16sProperty, bool(const std::string&,
|
|
const Uint16s&, Error*));
|
|
MOCK_METHOD3(SetUint32Property, bool(const std::string&, uint32_t, Error*));
|
|
MOCK_METHOD3(SetUint64Property, bool(const std::string&, uint64_t, Error*));
|
|
MOCK_METHOD2(ClearProperty, bool(const std::string&, Error*));
|
|
|
|
private:
|
|
DISALLOW_COPY_AND_ASSIGN(MockPropertyStore);
|
|
};
|
|
|
|
} // namespace shill
|
|
|
|
#endif // SHILL_MOCK_PROPERTY_STORE_H_
|