1
vote
2answers
33 views
Ramifications of Virtual Methods/Properties
Ola the 'flow!
I have been using Moq recently in my development process and I like what I am able to achieve.
However, I find myself making my methods (and properties for the mos …
0
votes
2answers
34 views
How to test method call order with Moq
At the moment I have:
[Test]
public void DrawDrawsAllScreensInTheReverseOrderOfTheStack() {
// Arrange.
var screenMockOne = new Mock<IScreen>();
…
7
votes
6answers
171 views
What are the real-world pros and cons of each of the major mocking frameworks?
I'm trying to decide on a mocking framework to use on a .NET project I've recently embarked on. I'd like to speed my research on the different frameworks. I've recently read this …
2
votes
1answer
18 views
Moq and DataContext
I am new to Moq and need to know if I am doing this right.
In AccountController.cs I have this:
int id = _userRepository.GetProfileFromUserName(userName).ProfileID;
UserR …
5
votes
9answers
173 views
Why do we need mocking frameworks?
I have worked with code which had NUnit test written. But, I have never worked with mocking frameworks. What are they? I understand dependency injection and how it helps to improve …
2
votes
5answers
104 views
How do I mock an IEnumerable<T> so that I can test a method that receives it
I have a method that I want to test which expects an IEnumerable<T> as a parameter.
I'm currently mocking the contents of the IEnumerable<T> as follows (Using Moq):
…
0
votes
2answers
49 views
MOQ - Have a moq valid only once.
This is my problem test:
[Test]
public void PlayerHasPointsIncreasedOnEnterByFifteen() {
// Arrange.
var playerOneFake = new Mock<IEntity>();
…
3
votes
1answer
59 views
How-To Mock MSMQ MessageQueue
Hi,
I want to Unit Test my application which use MSMQ but i found no way in order to Mock MessageQueue objects.
var queuePath = @".\Private$\MyQueue";
MessageQueu …
1
vote
3answers
93 views
Moq - How to verify that a property value is set via the setter
Consider this class:
public class Cotent
{
public virtual bool IsCheckedOut {get; private set;}
public virtual void CheckOut()
{
IsCheckedOut = true;
}
publi …
1
vote
3answers
145 views
How to mock a web service
Do I have to rewrite my code to do this into an interface? Or is there an easier way? I am using Moq
0
votes
2answers
32 views
Moq Mocking and tracking Session values
I'm having problems returning a Session value set from mocking using Moq. Using the following
public class TestHelpers
{
public long sessionValue = -1;
public HttpContextBase Fa …
1
vote
4answers
80 views
Expecting an exception in a test but wanting to verify dispose is called anyway.
I'm unit testing a demo application, which is a POP3 client. The POP3 client implements IDisposable, so I'm trying to test a 'using' cycle.
(I'm using nunit 2.5.2 and Moq 4.0)
…
1
vote
1answer
52 views
Moq a proxy for unit testing
Dear all,
I'm new to using Moq and I cannot find the way for doing this.
I've a generateId private method, called
/// <summary>
/// Generates a call Id for external interfa …
0
votes
1answer
46 views
Mocking System.Drawing.Image with Moq
How would I go about mocking an Image with Moq?
It has no constructors (is always generated from factory methods).
Basically I want to do something like this...
var image = new …
3
votes
3answers
78 views
Moq how do you test internal methods?
Hi,
Told by my boss to use Moq and that is it.
I like it but it seems that unlike MSTest or mbunit etc... you cannot test internal methods
So I am forced to make public some inter …
