// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Xunit;
namespace Aspire.Qdrant.Client.Tests;
public class ConfigurationTests
{
[Fact]
public void EndpointIsNullByDefault()
=> Assert.Null(new QdrantClientSettings().Endpoint);
[Fact]
public void HealthChecksEnabledByDefault() =>
Assert.False(new QdrantClientSettings().DisableHealthChecks);
[Fact]
public void HealthCheckTimeoutNullByDefault() =>
Assert.Null(new QdrantClientSettings().HealthCheckTimeout);
}
|