Skip to content
Open
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
6 changes: 6 additions & 0 deletions site/docs/contribute.md
Original file line number Diff line number Diff line change
Expand Up @@ -478,6 +478,12 @@ This helps separate logical sections of the code, making it easier to read and d

## Testing

### Conventions and recommendations

- Test class names must start with `Test`, for example `TestExample`.
- Recommend omitting the `public` modifier for test classes, test methods, and lifecycle methods.
- Recommend omitting the `test` prefix for test methods.

### AssertJ

Prefer using [AssertJ](https://github.com/assertj/assertj) assertions as those provide a rich and intuitive set of strongly-typed assertions.
Expand Down