skip to Main Content

Unit testing – casting an OkResult. What happens if the object cannot be cast to OkResult? – Asp.net

I've just started Unit Testing and I'm having some trouble understanding how should I write them. I have this code [Theory] [InlineData("00000000-0000-0000-0000-000000000001")] [InlineData("00000000-0000-0000-0000-000000000002")] public void Delete_Intern(Guid id) { _internService.Setup(x => x.Delete(It.IsAny<Guid>())).Returns(true); var actual = (OkResult) _internsController.DeleteIntern(id); Assert.True(actual is OkResult); }…

VIEW QUESTION

Convert generic method as async – Asp.net

I have following generic method in abstract class which is in many places across application: protected T Execute<T>(Func<T> func) { try { return func(); } catch (InvalidOperationException invalidEx) { throw new InvalidException(invalidEx.Message, invalidEx); } catch (SqlException sqlEx) { throw new…

VIEW QUESTION

Upload functionality not working. ASP.NET Page

so basically I am trying to piggy-back from this article https://www.c-sharpcorner.com/UploadFile/5357ed/importingreadingexporting-of-csv-file-in-Asp-Net/ so I can add upload functionality into my asp.net page and then customized my gridview to something else. Mainly, I have followed the same code and gave it a…

VIEW QUESTION
Back To Top
Search