Dummies
A Dummy is an object that FakeItEasy can provide when an object of a certain type is required, but the actual behavior of the object is not important.
How to use them in your tests
Consider this example. Say that you want to test the following class:
Maybe in one of your tests you want to invoke Checkout
with an
expired library card. The checkout should fail, regardless of the book
being checked out—only the status of the card matters. Instead
of writing
You can write:
This signals that the actual value of the Book
is really not
important. The code is intention-revealing.
You can also create a collection of dummies by writing:
This will return an IList
containing 10 dummy Book
instances.
For cases where the type of dummy isn't statically known, non-generic methods are also available. These are usually only required when writing extensions for FakeItEasy, so they live in the FakeItEasy.Sdk
namespace:
using FakeItEasy.Sdk;
...
var type = GetTypeOfDummy();
object dummy = Create.Dummy(type);
IList<object> dummies = Create.CollectionOfDummy(type, 10);
How FakeItEasy uses them
When creating Fakes or Dummies of class types, FakeItEasy needs to invoke the classes' constructors. If the constructors take arguments, FakeItEasy needs to generate appropriate argument values. It uses Dummies.
How are the Dummies made?
When FakeItEasy needs to access a Dummy of type T
, it tries a number
of approaches in turn, until one succeeds:
- If
T
isvoid
, returnnull
. - If there's a user-supplied
dummy factory for
T
, return whatever it makes. - If
T
isString
, return an empty string. - If
T
isTask
orValueTask
, the returned Dummy will be an actualTask
orValueTask
that is already completed. - If
T
isTask<TResult>
orValueTask<TResult>
, the returned Dummy will be an actualTask<TResult>
orValueTask<TResult>
that is already completed and whoseResult
is a Dummy of typeTResult
, or a defaultTResult
if no Dummy can be made forTResult
. - If
T
is aLazy<TValue>
the returned Dummy will be an actualLazy<TValue>
whoseValue
is a Dummy of typeTValue
, or a defaultTValue
if no Dummy can be made forTValue
. - If
T
is a tuple type (Tuple<>
orValueTuple<>
), the Dummy will be a tuple whose elements are dummies, or default values when dummies can't be made. - If
T
is a value type, the Dummy will be the default value for that type (i.e.new T()
). - If
T
is fakeable, the Dummy will be a FakeT
. - If nothing above matched, then
T
is a class. Loop over all its public constructors in descending order of argument list length. For each constructor, attempt to get Dummies to satisfy the argument list. If the Dummies can be found, create an instance using that constructor, supplying the Dummies as the argument list. If the argument list can't be satisfied, then try the next constructor.
If none of these strategies yield a viable Dummy, then FakeItEasy
can't make a Dummy of type T
.