Given the following conditions: a very old, big, C# legacy code base with no testcoverage whatsoever (almost) every class derives from some interface
Ok so I have an issue with JustMock that I am hoping that someone here can help me with. I have a class with several test methods(something like 80).Each of these methods when run independently will p
I am using JustMock to mock interfaces for unit testing, but perhaps I\'m not doing it right. I have an interface:
Closed. This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing
I have a simple \'Service\' system set up with an interface as shown below. I am trying to mock it for use in my unit testing, but am having a bit of an obstacle. The way it works is that I design cla
I am very new to Unit Testing, so I am starting on my first set of tests today. I am using the Library JustMock from Telerik. Though any unit testing information is good. I am having a bit of trouble
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references,or expertise, but this question will likely solicit debate, a
I am trying to mock a Property using Telerik JustMock. public WorkitemBusinessObject mock() { var mockContext = Mock.Create<BusinessObjectContext<Workitem>>();
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references,or expertise, but this question will likely solicit debate, a
Instead of returning a List<Long> of ids when calling PersonDao.getAll() we wanted not to have an entire collection of ids in memory.