sapling/eden/fs/testharness/TestUtil.h
Andres Suarez fbdb46f5cb Tidy up license headers
Reviewed By: chadaustin

Differential Revision: D17872966

fbshipit-source-id: cd60a364a2146f0dadbeca693b1d4a5d7c97ff63
2019-10-11 05:28:23 -07:00

26 lines
567 B
C++

/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This software may be used and distributed according to the terms of the
* GNU General Public License version 2.
*/
#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);
} // namespace eden
} // namespace facebook