File: ConfigurationTests.cs
Web Access
Project: src\tests\Aspire.Qdrant.Client.Tests\Aspire.Qdrant.Client.Tests.csproj (Aspire.Qdrant.Client.Tests)
// 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);
}