Move daily emails into the blog page

This commit is contained in:
Oliver Davies 2025-08-21 00:28:10 +01:00
parent be69398931
commit 1b8441608f
828 changed files with 9 additions and 196 deletions

View file

@ -0,0 +1,29 @@
---
title: >
Writing custom assertions in your tests
pubDate: 2023-08-17
permalink: >-
daily/2023/08/17/writing-custom-assertions-in-your-tests
tags:
- automated-testing
- test-driven-development
---
Writing custom assertions is a great way to clean up your test code.
Here's an example from one of my client Drupal projects:
```language-php
private static function assertProductVariationHasPrice(ProductVariationInterface $productVariation, string $expectedPrice): void {
self::assertSame(
actual: $productVariation->getPrice()->getNumber(),
expected: $expectedPrice,
);
}
```
This one wraps a single assertion, but they could also include multiple assertions or additional steps.
## Here's the thing
A custom assertion is a simple function but it makes the test code more readable and less repetitive.