sapling/eden/fs/testharness/TestUtil.h
Adam Simpkins 26833281bf add makeTestHash() helper function
Summary:
Add a helper function to create human-readable hashes in test code without
having to always specify a full 40-byte long string.

Reviewed By: wez

Differential Revision: D4336161

fbshipit-source-id: cf6af58dd788b5553a2a6daef56db43cddbbc04a
2016-12-16 12:58:30 -08:00

28 lines
656 B
C++

/*
* Copyright (c) 2016, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
*/
#pragma once
#include <folly/Range.h>
namespace facebook {
namespace eden {
class Hash;
/**
* Helper function for creating Hash values to use in tests.
*
* The input should be an ASCII hex string. It may be less than 40-bytes long,
* in which case it will be sign-extended to 40 bytes.
*/
Hash makeTestHash(folly::StringPiece value);
}
}