mirror of
https://github.com/bitwarden/server.git
synced 2024-11-28 13:15:12 +01:00
231eb84e69
* Turn on ImplicitUsings * Fix formatting * Run linter
26 lines
815 B
C#
26 lines
815 B
C#
using Bit.Core.Entities;
|
|
using Bit.Core.OrganizationFeatures.OrganizationConnections;
|
|
using Bit.Core.Repositories;
|
|
using Bit.Test.Common.AutoFixture;
|
|
using Bit.Test.Common.AutoFixture.Attributes;
|
|
using NSubstitute;
|
|
using Xunit;
|
|
|
|
namespace Bit.Core.Test.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);
|
|
}
|
|
}
|
|
}
|