Example #1
0
        public void GetImagePayload_ShouldReturnNullWithEmptyByteArray()
        {
            // Arrange
            byte[]      bytes = { };
            FaceService svc   = new FaceService();

            // Act
            ByteArrayContent result = svc.GetImagePayload(bytes);

            // Assert
            Assert.Null(result);
        }