Ejemplo n.º 1
0
        public void GetImageAsByteArray_ShouldReturnNullWithInvalidFilePath(string filePath)
        {
            // Arrange
            FaceService svc = new FaceService();

            // Act
            byte[] result = svc.GetImageAsByteArray(filePath);

            // Assert
            Assert.Null(result);
        }