mirror of
https://github.com/bitwarden/server.git
synced 2024-11-24 12:35:25 +01:00
25 lines
787 B
C#
25 lines
787 B
C#
using Bit.Core.AdminConsole.OrganizationFeatures.OrganizationConnections;
|
|
using Bit.Core.Entities;
|
|
using Bit.Core.Repositories;
|
|
using Bit.Test.Common.AutoFixture;
|
|
using Bit.Test.Common.AutoFixture.Attributes;
|
|
using NSubstitute;
|
|
using Xunit;
|
|
|
|
namespace Bit.Core.Test.AdminConsole.OrganizationFeatures.OrganizationConnections;
|
|
|
|
[SutProviderCustomize]
|
|
public class DeleteOrganizationConnectionCommandTests
|
|
{
|
|
[Theory]
|
|
[BitAutoData]
|
|
public async Task DeleteAsync_CallsDelete(OrganizationConnection connection,
|
|
SutProvider<DeleteOrganizationConnectionCommand> sutProvider)
|
|
{
|
|
await sutProvider.Sut.DeleteAsync(connection);
|
|
|
|
await sutProvider.GetDependency<IOrganizationConnectionRepository>().Received(1)
|
|
.DeleteAsync(connection);
|
|
}
|
|
}
|