Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,8 @@ The `api/` module has the strongest stability guarantees — breaking changes ar
- Test classes and methods should be package private unless required by inheritance.
- Compute expected values, don't hardcode. Tests belong in the module that owns the code.
- Write the most direct test for the bug. Parameterized tests for type variations.
- JUnit 5 + AssertJ: `@Test` (no `test` prefix), `assertThat`, `assertThatThrownBy`.
- JUnit 5 + AssertJ: `@Test`, `assertThat`, `assertThatThrownBy`.
- Avoid using `test` prefixes for newly added tests.
- `waitUntilAfter` for time-dependent tests. Separate tests over combined.

### REST / OpenAPI Spec
Expand Down