sapling/eden/fs/testharness/TestServerState.h
Zeyi (Rice) Fan 0cad32f6c2 testharness: add TestServerState
Summary: Creating `ServerState` in tests shouldn't be hard.

Reviewed By: chadaustin

Differential Revision: D36146645

fbshipit-source-id: 88b2fce0330d377b54fd1651c09eb7078dbbe918
2022-05-10 18:52:04 -07:00

19 lines
347 B
C++

/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This software may be used and distributed according to the terms of the
* GNU General Public License version 2.
*/
#pragma once
#include <memory>
namespace facebook::eden {
class ServerState;
std::shared_ptr<ServerState> createTestServerState();
} // namespace facebook::eden