Tagged Questions
The fakes tag has no wiki summary.
16
votes
4answers
668 views
Do you ever create fake progress bars?
Do you (and would you) ever create progress bars that are just there to keep the client happy and moves without reflecting the true progress of the program? I remember reading about this somewhere, ...
9
votes
4answers
694 views
Are fakes better than Mocks?
I stumbled upon this open source project Fake It Easy, and I have to admit, it looks very interesting, however I have my doubts, what are the difference between FIE fakes and say Moq Mocks? Is any one ...
6
votes
6answers
357 views
fake/mock nonvirtual C++ methods
It known that in C++ mocking/faking nonvirtual methods for testing is hard. For example, cookbook of googlemock has two suggestion - both mean to modify original source code in some way (templating ...
4
votes
3answers
114 views
Why does overriding a method only occur after I implement an interface?
I've been reading through the book Working Effectively with Legacy Code and I've been playing around with the concept of overriding difficult to test methods in unit tests via the creation of a fake. ...
2
votes
1answer
155 views
PHP faked multiple inheritance - having object attributes set in fake parent class available in extended class
I have used faking of multiple inheritance as given in Can I extend a class using more than 1 class in PHP?
Notice that class A actually extends class B and faking is done for extending from class C.
...
1
vote
3answers
392 views
How to fake Azure Table Storage in .NET for Unit Testing?
I am working on a system that uses Azure Table Storage. In other systems (e.g., SQL, File based, etc), I can write a fake that allows me to test my data persistence logic. However, I can't see an easy ...
1
vote
3answers
390 views
C++ Fake class with callbacks
What would be a good design pattern if I require to test a C++ class A which interfaces with class B where calls to B initiate callbacks to A later on?I require complete control over these callbacks - ...
1
vote
5answers
104 views
How to test that objects get updated using a fake repository
Say I have the following business logic:
foreach (var item in repository.GetAll())
{
if (SomeConditition)
{
item.Status = Status.Completed;
...
1
vote
2answers
1k views
Fake loading/progress bar for slow non-Ajax page
I'm developing a site which serves some slow (up to around 4 sec. loading time) pages due to extensive database queries.
In order to let the users know that the new page is loading (also to prevent ...
0
votes
3answers
282 views
asp.net mvc - How to create fake test objects quickly and efficiently
I'm currently testing the controller in my mvc app and I'm creating a fake repository for testing. However I seem to be writing more code and spending more time for the fakes than I do on the actual ...