A framework to create fake objects, mocks, stubs, etc.
2
votes
1answer
100 views
Why does this MustHaveHappened call on a FakeItEasy object fail in MSpec?
When running following test all the assertions fail. Can't figure out why they fail, because the actual implementation does have a call to the objects.
Is this a known bug? Because some other tests ...
1
vote
2answers
107 views
Return different objects from FakeItEasy A.CallTo()
For my test, I need the first call to a stub to return one object, and the next call to return a different object. I have seen this in other mock object frameworks in record() blocks, but I have not ...
0
votes
2answers
41 views
FakeItEasy mock error inside method
I have a method I am trying to test and need to test if an error is thrown. If the employee repository throws an error, I want to make sure I get the EmployeeServiceError back. I am using the ...
2
votes
2answers
120 views
Equivalent of JustMock's ReturnsCollection() in FakeItEasy?
With JustMock I can mock DataContext tables with lists in Linq to SQL easily like this, where an IEnumerable is taking the place of each DataContext's table through ReturnsCollection() allowing me to ...
3
votes
1answer
122 views
Faking a generic method FakeItEasy
How would you go about faking the following:
public interface IBlah
{
Func<T, bool> ApplyFilter<T>(Func<T, bool> predicate) where T:IMessage;
}
What I would like is for the ...
3
votes
1answer
179 views
Test project scans my controllers twice
I've created a github repo for this specific post which can be found at https://github.com/CrazyInCode/WebApiNServiceBus
What I'm trying to do is to write tests for my WebApi application. In my specs ...
1
vote
1answer
84 views
FakeItEasy deep nested types faking
I have a complex object that I'm trying to fake.
interface IContext
{
User User { get; }
}
A.CallTo(
() => _fakeContext.User.Subscription.Attributes)
.Returns(new ...
0
votes
0answers
78 views
tdd fakeiteasy rookie simple unit test does not compile [closed]
im using the following test although im getting an error when compiling!? the error is "system.web.mvc.controller is defined in an assembly that is not referenced. you must add a reference to ...
3
votes
1answer
171 views
FakeItEasy says MustHaveHappened didn't happen … but it did
I'm trying to unit test a "service layer" / "application facade layer" method. This is the method I'm trying to unit test:
// Create a new order in the database for a customer. Given a ...
0
votes
2answers
97 views
How to assert a choice of calls with FakeItEasy
With FakeItEasy, how to assert, that any of calls has happened?
The use case is I'm writing a class that works with a repository and as a result of a method, the class should remove some elements ...
0
votes
1answer
58 views
MustHaveHappened not being called when using IoC
I'm trying to test that a service call is made.
I have an IAuthenticationService that makes an UpdateUserProfile call. The IAuthenticationService is in the IoC (StructureMap in my case).
...
2
votes
1answer
145 views
How to get access to parameters value in Returns() using FakeItEasy?
I have an interface to a factory used to create some data objects.
interface IFactory
{
IData Create (string name, string data);
}
interface IData
{
// ....
}
class Data : IData
{
...
2
votes
2answers
106 views
Dependency injection refactoring
I have this ctor:
public Section()
{
_tabs = new TabCollection(this);
_sections = new SubSectionCollection(this);
}
I would like to get something like this:
public ...
2
votes
2answers
154 views
FakeItEasy - Is it possible to intercept a method and replace it with my own implementation?
I'm not sure how I should ask this question so feel free to edit the title. I have the following interface :
public interface IOuputDestination
{
void Write(String s);
}
In my unit test, I mock ...
3
votes
0answers
88 views
How do I raise an event in FakeItEasy for an event based on a custom delegate?
The application I am testing is full of events based on custom delegates, such as this:
public delegate void NameChangedHandler(string name);
public event NameChanged OnNameChanged;
...
public void ...
1
vote
1answer
65 views
MustHaveHappened fails when called twice on the same object
Given the following class under test (and associated DTO class and interface):
public class Foo
{
private readonly IBar _bar;
public Foo(IBar bar) { _bar = bar; }
public void DoStuff()
...
0
votes
1answer
56 views
Warnings when using Fake.InitializeFixture
I'm using Fake.InitializeFixture like this:
[Fake] private ISomeDependency _someDependency;
[UnderTest] private SomethingToTest _somethingToTest;
[SetUp]
public void SetUp()
{
...
1
vote
0answers
138 views
FakeItEasy throwing NullReferenceException on MustHaveHappened - but only sometimes
We have a method being unit tested. Here's the method:
protected override void DoWork()
{
bool success = false;
string logMessage = String.Empty;
try
{
...
2
votes
1answer
234 views
C# FakeItEasy fake method that have been overrided
I have problem with faking my class:
Class A has a method:
protected virtual int method(int argument)
{
implementation
return int;
}
Class B extends class A and overrides the method:
...
1
vote
1answer
275 views
Creating a fake DbDataAdapter throws FakeItEasy.Core.FakeCreationException
I set up a simple test project in Visual Studio 2010. For unit tests I use nunit 2.6.1 and for mocking FakeItEasy 1.7.4582.63 which I install via NuGet.
I try to fake a DbDataAdapter using the ...
1
vote
1answer
204 views
Using FakeItEasy to have a faked method call raise an event?
I'm trying to do something along the lines of:
A.CallTo(() => fakeTimer.Start()).Invokes(() =>
fakeTimer.Elapsed += Raise.With<ElapsedEventArgs>(ElapsedEventArgs.Empty).Now);
The ...
1
vote
1answer
116 views
how to verify that a method was called with an argument of a specific type
I need to verify that a method was called with an object of a specific type
this is the interface with the method that I want to test that it was called:
interface IPlayer
{
void Send(object ...
0
votes
1answer
135 views
How to fake delegates with FakeItEasy
When i try to fake a delegate-type, i get System.InvalidCastException
[TestMethod]
public void TestDelegateFake()
{
var func = A.Fake<Func<long, object>>();
A.CallTo(() => ...
2
votes
1answer
90 views
How to mock an interface returned as property from another mock?
I have the following interfaces:
interface IManufacturing
{
IJobApi JobApi {get;}
}
interface IJobApi
{
IList<JobSpec> GetSpecs (string wo, string name);
}
I have a class which uses ...
2
votes
1answer
137 views
Does FakeItEasy support the idea of Partial Mocks?
Similar to this question about NSubstitute, I want to know if one is able to implement partial mocks using the FakeItEasy library.
FakeItEasy seems to have an overall nicer syntax than moq (like the ...
1
vote
1answer
241 views
generated service mock: everything but RhinoMocks fails?
See this code:
TicketStoreService fakeTicketStoreService = MockRepository.GenerateMock<TicketStoreService>();
fakeTicketStoreService.Expect(service => service.DoSomething(Arg.Is(new ...
7
votes
2answers
384 views
How to test for exceptions thrown using xUnit, SubSpec and FakeItEasy
I’m using xUnit, SubSpec and FakeItEasy for my unit tests.
I’ve so far created some positive unit tests like the following:
"Given a Options presenter"
.Context(() =>
presenter = new ...
1
vote
1answer
271 views
How to fake a generic method call using FakeItEasy?
I am faking an IDbConnection and I want to fake the call to QueryOne<T>() (a Dapperextension) but I get a NullReferenceException when doing so.
Here´s my code:
IDbConnection myConnection = ...
0
votes
1answer
234 views
How fake System.Security.Principal.IIdentity using FakeItEasy?
In my app users loging in via WIF. User's credentials is stored in System.Security.Principal.IIdentity. Now i want to test CreateUser() method.
I have to in some way fake that object. I try to do ...
1
vote
1answer
112 views
The specified object is not recognized as a fake object. Issue
I am having an issue where a FakeItEasy call in an extremely simple test is failing with the error "The specified object is not recognized as a fake object." The call is simple:
...
0
votes
2answers
231 views
Test using fake if a method logs an error when an exception is thrown within that method
enter code hereI have a method that logs errors when an exception is thrown within that method.
The method is non-static inside a singleton.
public object MethodA()
{
try
{
...
2
votes
2answers
638 views
is it possible to mock/fake an extension method?
I'm using a controller extension, and I tried to mock it using FakeItEasy (v 1.7.4) like this:
A.CallTo(() => ...
2
votes
1answer
1k views
first steps with FakeItEasy and problems with Action type
I have the following (here simplified) code which I want to test with FakeItEasy.
public class ActionExecutor : IActionExecutor
{
public void TransactionalExecutionOf(Action action)
{
...
2
votes
1answer
270 views
Stubbing out parameters with pre-existing values in FakeItEasy
This is a bit of an odd one. I'm trying to stub a method which has out parameters, I don't care about what the parameters are so I'm ignoring the arguments. It looks like this:
List<Foo> ...
0
votes
1answer
276 views
How do you stub out calls to get properties?
Consider the following interface...
public interface MyInterface
{
bool MyProperty { get; }
}
I am attempting to stub out a call to the get function of this property in fakeiteasy.
[Test]
...
3
votes
2answers
343 views
How to Assert that an Event Has been Subscribed To with FakeItEasy?
I have a fake class that contains an event. My code should subscribe to that event and I want to test that. I'm using FakeItEasy with NUnit and I'm looking for a way to check that my code actually ...
0
votes
2answers
222 views
FakeItEasy callback implementation
How do I translate this moq code:
fooMoq.Setup(x => x.SayHello("xxx")).Returns("hello").Callback((string name) =>
{
Assert.AreEqual(name, "xxx");
...
1
vote
3answers
795 views
Using Reflection Invoke static generic method passing a Lamba as parameter
Is it possible to write the following code via Reflection?
var fake = A.Fake<Foo>(
o => o.WithArgumentsForConstructor(new[] { "Hello" }));
Where o is:
...
3
votes
1answer
1k views
Using FakeItEasy, how to get the value set on a property on a fake?
Using FakeItEasy, I am trying to capture the setting of a property value on a fake object:
First the interface:
interface ISomeInterface
{
int MyProperty {get;set;}
}
Then a fragment of unit ...
1
vote
1answer
253 views
FakeItEasy & “params” arguments
I have a method with the following signature.
Foo GetFooById( int id, params string[] children )
This method is defined on an interface named IDal.
In my unit test I write the following:
IDal dal ...
1
vote
1answer
581 views
FakeItEasy Create a Fake of a Class
I was attempting to use FakeItEasy recently but I wasn't able to create a Fake from a concrete class without working around many quirks.
I tried the following:
public class MyObject {
public ...
5
votes
1answer
336 views
What is a Dummy used for in FakeItEasy?
What is Dummy used for in FakeItEasy? How does it differ from A.Fake or A.Ignored ?
Thanks :-)
2
votes
3answers
437 views
FakeItEasy: argument constraints and expresion trees
Can I use an Expresion Tree as an argument constraint in a FakeIteasy CallTo asertion?
Given a method on an interface with the following siganture:
interface IRepository<TEntity>
{
TEntity ...
6
votes
4answers
922 views
Faking/mocking an interface gives “no default constructor” error, how can that be?
I'm trying to write a unit test of a repository implementation. The repository uses RavenDB as a database. For the unit tests, I would like to mock the RavenDB parts. In order to create the mocks ...
0
votes
1answer
133 views
How to update a property on a parameter using FakeItEasy
I have an interface that includes a member that looks like:
void ExecuteSqlCommand(string procedureName, SqlParameter[] parameters);
I am using FakeItEasy to create a mock of this to pass to one of ...
2
votes
2answers
646 views
How do I assert that a method is called only once?
[Subject(typeof(OnceADayProcessor))]
public class When_processing_process_twice
{
private static ICanBeProcessedOnceADay ProcessedOnceADay;
private Establish context = () => { ...
0
votes
1answer
443 views
Difference in Behavior between Rhino and FakeItEasy
We're considering switching from Rhino to FakeItEasy for our mocking framework. The main reason is simplicity, in FakeItEasy there's only one way to do things. Rhino has record/playback, AAA, stub, ...
3
votes
2answers
2k views
Getting arguments passed to a FakeItEasy-mock without using magic strings?
I have been using Moq for my mocking needs the last years, but after looking at FakeItEasy i wanted to give it a try.
I often want to test that a method have been called with the correct parameters, ...
0
votes
1answer
38 views
Test scripts for function with for loop
I am getting started with Mocking using FakeItEasy and stuck up at some point.
I have below interfaces
public interface IPrint {
void Print(int start = 1, int end = 100);
}
public interface ...
3
votes
2answers
303 views
Asserting a call to a public method on the same mock instance
I have the following test
[Test]
public void Attack_TargetWith3Damage_CausesAttackerToDeal3DamageToTarget()
{
var realAttacker = CreateCreature(damage: 3);
var wrappedAttacker = ...
