The justmock tag has no wiki summary.
14
votes
6answers
4k views
Rhino mock vs Typemock vs JustMock vs
I need to choose mock framework to new project.
What are the pros and cons for those frameworks?
Any comparison table?
I know that JustMock is i beta stage but it's look very good right now (very ...
7
votes
1answer
569 views
Mocking a simple service bus in ASP.NET MVC
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 ...
3
votes
3answers
845 views
TypeMock VS JustMock (VS RhinoMock,Moq…): current situation in 2011?
I've started TDD some weeks ago. I have to do Unit Tests on a C# code full of non-virtual methods and there is no much interface either. Therefore, after I've been studying RhinoMock and Moq, a proxy ...
2
votes
1answer
483 views
JustMock vs. TypeMock vs. Other
With Telerik's JustMock product newly available, it has a lot of similarities to TypeMock, in the ability to mock concrete classes, not just abstract classes or interfaces. I was just curious your ...
1
vote
2answers
133 views
Mocking ConfigurationManager.AppSettings with JustMock
Following the directions at: http://www.telerik.com/help/justmock/advanced-usage-static-mocking.html
I'm unsuccessful in mocking ConfigurationManager.AppSettings. Here's the code I'm using...
...
1
vote
1answer
157 views
unit testing legacy code: limits of “extract and override” vs JustMock/TypeMock/moles?
Given the following conditions:
a very old, big, C# legacy code base with no testcoverage whatsoever
(almost) every class derives from some interface
nothing is sealed
What are the practical ...
1
vote
1answer
154 views
How to mock an interface property with JustMock in VB.NET
I am using JustMock to mock interfaces for unit testing, but perhaps I'm not doing it right.
I have an interface:
Public Interface IFoo
Property Bar as int
End Interface
I want to mock this ...
0
votes
1answer
49 views
Can JustMock return a value based on the parameter?
Using JustMock, can I arrange a mock to return something based on the input parameter?
For example, say a method takes in an int, I want to return that value + 1
I want the output to always be mocked ...
0
votes
1answer
126 views
Issues with JustMock and Large Test Runs
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 ...
0
votes
1answer
244 views
First Unit Tests! ASP.NET MVC with Repositories causing errors
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 ...
0
votes
1answer
144 views
Telerik JustMock a Property Read
I am trying to mock a Property using Telerik JustMock.
public WorkitemBusinessObject mock()
{
var mockContext = Mock.Create<BusinessObjectContext<Workitem>>();
...