mirror of
https://github.com/bitwarden/mobile.git
synced 2024-12-04 13:33:33 +01:00
24 lines
708 B
C#
24 lines
708 B
C#
|
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);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|