Show last authors
author | version | line-number | content |
---|---|---|---|
1 | ### Purpose | ||
2 | |||
3 | * **Mocking simplifies unit testing by replacing the dependencies** of the unit being tested with simplified, simulated versions called mocks. Example: Consider a unit under test that relies on a database. In testing, the database can be mocked to return a static value, eliminating the need for an actual database. | ||
4 | |||
5 | ### Benefits of Mocking | ||
6 | |||
7 | * Isolation of units to test each unit separately, dramatically reducing complexity and increasing test execution speed by replacing loaded modules with mocks. | ||
8 | * Simplifies the re-creation of specific scenarios (use cases, boundary cases). | ||
9 | * Expose hidden internals of production code without compromising encapsulation. | ||
10 | * Injection of test-specific behaviors not present in production code. | ||
11 | * Enables the simulation of indirect dependencies by letting mocks return other mocks. | ||
12 | |||
13 | ### | ||
14 | |||
15 | ### Types of Mocks | ||
16 | |||
17 | Stubs are by far the most common type of mock. Keep your tests as simple as possible. Make them more complex only when necessary. | ||
18 | |||
19 | * **Stubs**: Simplest form, returning a hardcoded value or providing an empty method body. | ||
20 | * **Fake object**: Include minimal logic to handle different case scenarios. | ||
21 | * **Spy**: Records internal data of the unit being tested when such data is not directly accessible. | ||
22 | * **Mock object**: Contains complex logic, simulates behaviors such as computation and exception handling, and can even run tests. | ||
23 | |||
24 | ### | ||
25 | |||
26 | ### Tips | ||
27 | |||
28 | * **Mock third-party libraries in unit tests** to ensure proper unit functionality. However, they should not be mocked in component and integration tests. | ||
29 | * Aim for a **minimal number of dependencies in a unit** for easier testing and mocking: | ||
30 | * Limit dependencies in a unit in a similar way to the best practices for function arguments: the fewer the better, with an absolute maximum of three. | ||
31 | * Prefer many small classes/units to one large one for easier testing. | ||
32 | * If a class has excessive dependencies, consider splitting it up or extracting some dependencies into a new class to create smaller, more cohesive units. | ||
33 | * If a production class requires more than one test class, it's probably a sign that the class is too large. | ||
34 | * Overly complex test code may indicate an overly large production class. |