Introduction
Dummy objects are simple placeholders used in tests when a parameter is needed but not actually used. They help keep tests clean and focused.
When a method requires an object parameter but the test does not use it.
When you want to satisfy method signatures without adding test complexity.
When you want to isolate the part of the code you are testing from unrelated dependencies.