1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-12-04 13:33:33 +01:00
bitwarden-mobile/test/Core.Test/Models/Data/SendDataTests.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
708 B
C#
Raw Normal View History

using Bit.Core.Models.Data;
using Bit.Core.Models.Response;
using Bit.Core.Test.AutoFixture;
using Bit.Test.Common;
using Bit.Test.Common.AutoFixture.Attributes;
using Xunit;
namespace Bit.Core.Test.Models.Data
{
public class SendDataTests
{
[Theory]
[InlineCustomAutoData(new[] { typeof(TextSendCustomization) })]
[InlineCustomAutoData(new[] { typeof(FileSendCustomization) })]
public void SendData_FromSendResponse_Success(string userId, SendResponse response)
{
var data = new SendData(response, userId);
TestHelper.AssertPropertyEqual(response, data, "UserId");
Assert.Equal(data.UserId, userId);
}
}
}