Skip to content

Commit

Permalink
Merge pull request #1274 from iamrachid/doc-nested-list-fix
Browse files Browse the repository at this point in the history
Fix nested list issue in docs
  • Loading branch information
jgebal committed Dec 6, 2023
2 parents e0a9fa1 + 03b0566 commit fe4e3e9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/userguide/best-practices.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ The following are best practices we at utPLSQL have learned about PL/SQL and Uni
- Tests should not mimic / duplicate the logic of tested code
- Tests should contain zero logic (or as close to zero as possible)
- The 3A rule:
- Arrange (setup inputs/data/environment for the tested code)
- Act (execute code under test)
- Assert (validate the outcomes of the execution)
- Arrange (setup inputs/data/environment for the tested code)
- Act (execute code under test)
- Assert (validate the outcomes of the execution)
- Each tested procedure/function/trigger (code block) should have more than one test
- Each test should check only one behavior (one requirement) of the code block under test
- Tests should be maintained as thoroughly as production code
Expand Down

0 comments on commit fe4e3e9

Please sign in to comment.