Definition

A technique commonly used in the context of crafting automated unit tests. It consists of instantiating a test-specific version of a software component (typically a class), which insteads of the normal behaviors provides precomputed results, and often also checks that it’s invoked as expected by the objects being tested.

For instance, the “mock” version of a database component will a) provide “canned” answers to database queries, instead of connecting to a real live database, and b) verify that the database is being accessed in the manner expected and stipulated in the test.

Also Known As

There are many terms for components that mimic actual code for the purposes of testing: mocks, stubs, fakes, spies, dummies to name the more common.

These terms are not strict synonyms, various authors make relatively subtle distinctions between these categories, based on whether the components have behaviour, record interactions with other components, etc.

The generic term “test double” has been proposed to refer to any such component (an allusion to “stunt double”).

Expected Benefits

Mock objects afford “decoupling” software components for the purposes of testing. For instance, code that relies should not be “coupled” to the implementation details of that database: its correct function relies on the logical organization of the data being queried, rather than on concrete aspects such as storing data on disk or establishing connections over network protocols. Mock objects lead to tests that only exercise the behavior of the software components under test, and do not depend on the behavior of other, unrelated components.

Common Pitfalls

The technique is slightly controversial, having both adepts and detractors; the latter argue that overuse of mock objects leads to a heavier test maintenance burden, and detracts from the tests’ role as documentation, and these drawbacks are not always adequately compensated by the benefits of mock objects.

Origins

 

– See more at: http://guide.agilealliance.org/guide/mocks#sthash.wmgV7PHD.dpuf

  • Join Agile Alliance and Support Our Mission

  • Agile2023 Registration

  • BYOC Lean Coffee

  • Game On – Applied Learning with Agile Games

Agile Alliance Resources

Help Us Keep Definitions Updated

Let us know if we need to revise this Glossary Term.