| layout | pattern | |
|---|---|---|
| title | Arrange/Act/Assert | |
| folder | arrange-act-assert | |
| permalink | /patterns/arrange-act-assert/ | |
| categories | Idiom | |
| tags |
|
Given/When/Then
The Arrange/Act/Assert (AAA) is a pattern for organizing unit tests. It breaks tests down into three clear and distinct steps:
- Arrange: Perform the setup and initialization required for the test.
- Act: Take action(s) required for the test.
- Assert: Verify the outcome(s) of the test.
Use Arrange/Act/Assert pattern when
- you need to structure your unit tests so they're easier to read, maintain, and enhance.