mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 05:28:15 -05:00

* Revert "Add git blame entry (#2226)" This reverts commit 239286737d15cb84a893703ee5a8b33a2d67ad3d. * Revert "Turn on file scoped namespaces (#2225)" This reverts commit 34fb4cca2aa78deb84d4cbc359992a7c6bba7ea5.
28 lines
998 B
C#
28 lines
998 B
C#
using Bit.Core.Models.Data.Organizations.OrganizationConnections;
|
|
using Bit.Core.Models.OrganizationConnectionConfigs;
|
|
using Bit.Core.OrganizationFeatures.OrganizationConnections;
|
|
using Bit.Core.Repositories;
|
|
using Bit.Test.Common.AutoFixture;
|
|
using Bit.Test.Common.AutoFixture.Attributes;
|
|
using Bit.Test.Common.Helpers;
|
|
using NSubstitute;
|
|
using Xunit;
|
|
|
|
namespace Bit.Core.Test.OrganizationFeatures.OrganizationConnections
|
|
{
|
|
[SutProviderCustomize]
|
|
public class CreateOrganizationConnectionCommandTests
|
|
{
|
|
[Theory]
|
|
[BitAutoData]
|
|
public async Task CreateAsync_CallsCreate(OrganizationConnectionData<BillingSyncConfig> data,
|
|
SutProvider<CreateOrganizationConnectionCommand> sutProvider)
|
|
{
|
|
await sutProvider.Sut.CreateAsync(data);
|
|
|
|
await sutProvider.GetDependency<IOrganizationConnectionRepository>().Received(1)
|
|
.CreateAsync(Arg.Is(AssertHelper.AssertPropertyEqual(data.ToEntity())));
|
|
}
|
|
}
|
|
}
|