Skip to content
Closed
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
9 changes: 9 additions & 0 deletions principles/coding_principles.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,12 @@ They will not have the understanding and context you do at the time of writing i
### Code securely

> We incorporate good security practice in all our code

### Test your code

> When writing code, tests can act as good documentation as well as avoiding bugs and regression issues.

- It is usually self documenting
- Increases quality
- Provides confidence in the implementation
- For low code platforms, Integration testing often adds more value