More testing concepts
Code Coverage
Code coverage measures how much of your code is executed during testing. It is a useful metric to ensure that your tests are comprehensive and indicate your codeβs quality. If your software becomes a dependency for others, a code coverage of 70% or higher is recommended for unit tests.
- pytest-cov plugin (for pytest)
- Coverage.py documentation
- Collect code coverage with Command Window execution (since R2023b)
- Code coverage with Test Browser (since R2023a)
- Collect code coverage metrics
Error handling
Tests should check if your code behaves as expected when it encounters errors. This includes testing if the code raises the correct exceptions when given invalid input or when an error occurs.
Example in Python:
def divide(x, y):
if y == 0:
raise ValueError("Cannot divide by zero")
return x / y
def test_divide_by_zero():
with pytest.raises(ValueError):
1, 0) divide(
Fixtures
Fixtures are predefined states or sets of data used to set up the testing environment, ensuring consistent conditions for tests to run reliably. Fixtures can be used to set up databases, create temporary files, or initialize other resources, that then available to all tests in a test suite.
Parameterization
Parameterization involves running the same test with different inputs or configurations to ensure broader coverage and identify potential edge cases.
Mocking
Mocking (or monkeypatching) is a technique used to simulate the behavior of dependencies or external systems during testing, allowing isolated testing of specific components. For example, if your software requires a connection to a database, you can mock this interaction during testing.