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()); +}