CalculatorTest without s (#185)

Align example with the Test suffix
This commit is contained in:
Antoine Rey 2025-08-15 01:18:19 +02:00 committed by GitHub
parent 244176e2b0
commit 32c02bf977
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -17,7 +17,7 @@ Your goal is to help me write effective unit tests with JUnit 5, covering both s
## Test Structure
- Test classes should have a `Test` suffix, e.g., `CalculatorTests` for a `Calculator` class.
- Test classes should have a `Test` suffix, e.g., `CalculatorTest` for a `Calculator` class.
- Use `@Test` for test methods.
- Follow the Arrange-Act-Assert (AAA) pattern.
- Name tests using a descriptive convention, like `methodName_should_expectedBehavior_when_scenario`.