blob: 62ce58ab07915fef3f6e2b483cfb5b9edb75ecc9 [file] [log] [blame]
// Copyright (c) 2013 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.
#ifndef CRYPTOHOME_MOCK_MOUNT_FACTORY_H_
#define CRYPTOHOME_MOCK_MOUNT_FACTORY_H_
#include "mount_factory.h"
#include <gmock/gmock.h>
namespace cryptohome {
class Mount;
class MockMountFactory : public MountFactory {
public:
MockMountFactory() {}
virtual ~MockMountFactory() {}
MOCK_METHOD0(New, Mount*());
};
} // namespace cryptohome
#endif // CRYPTOHOME_MOCK_MOUNT_FACTORY_H_