From 8914d9632d0d5fe9b22e0b552edb3276ca31e1fe Mon Sep 17 00:00:00 2001 From: Steve Gordon Date: Wed, 1 Mar 2023 14:03:18 +0000 Subject: [PATCH] Add documentation test folder (#7273) --- tests/Tests/Documentation/DocumentationTestBase.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 tests/Tests/Documentation/DocumentationTestBase.cs diff --git a/tests/Tests/Documentation/DocumentationTestBase.cs b/tests/Tests/Documentation/DocumentationTestBase.cs new file mode 100644 index 00000000000..16802d2d00d --- /dev/null +++ b/tests/Tests/Documentation/DocumentationTestBase.cs @@ -0,0 +1,10 @@ +// Licensed to Elasticsearch B.V under one or more agreements. +// Elasticsearch B.V licenses this file to you under the Apache 2.0 License. +// See the LICENSE file in the project root for more information. + +namespace Tests.Documentation; + +public abstract class DocumentationTestBase +{ + public static readonly ElasticsearchClient Client = new(new ElasticsearchClientSettings(new InMemoryConnection()).DisableDirectStreaming()); +}